From a03da05ee27f88082db48b6b898f46a0ec31d4d7 Mon Sep 17 00:00:00 2001 From: Max Desiatov Date: Sun, 10 Apr 2022 05:39:29 +0100 Subject: [PATCH] Bump version to 0.14.0, update `CHANGELOG.md` (#311) --- .gitignore | 3 +++ CHANGELOG.md | 17 +++++++++++++++++ Sources/CartonHelpers/Version.swift | 2 +- package-lock.json | 18 +++++++++--------- package.json | 2 +- 5 files changed, 31 insertions(+), 11 deletions(-) diff --git a/.gitignore b/.gitignore index f4f3433..6ec8334 100644 --- a/.gitignore +++ b/.gitignore @@ -106,3 +106,6 @@ Tests/**/Bundle # Homebrew *.bottle.tar.gz + +# VS Code +.vscode/launch.json diff --git a/CHANGELOG.md b/CHANGELOG.md index c5016ae..5e6cc75 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +# 0.14.0 (9 April 2022) + +This release uses SwiftWasm 5.6.0 as the default toolchain. Additionally, issues with rebuilding projects when watching +for file changes with `carton dev` has been fixed. Many thanks to [@kateinoigakukun](https://github.com/kateinoigakukun) +for contributions! + +**Closed issues:** + +- Watcher doesn't see my changes ([#295](https://github.com/swiftwasm/carton/issues/295)) + +**Merged pull requests:** + +- Several fixes for 5.6 toolchain ([#310](https://github.com/swiftwasm/carton/pull/310)) via [@kateinoigakukun](https://github.com/kateinoigakukun) +- Update SwiftPM dependencies ([#309](https://github.com/swiftwasm/carton/pull/309)) via [@MaxDesiatov](https://github.com/MaxDesiatov) +- Describe `--debug-info` and `-Xswiftc` in `README.md` ([#308](https://github.com/swiftwasm/carton/pull/308)) via [@MaxDesiatov](https://github.com/MaxDesiatov) +- Fix watcher blocked by Vapor `run()` ([#307](https://github.com/swiftwasm/carton/pull/307)) via [@kateinoigakukun](https://github.com/kateinoigakukun) + # 0.13.0 (31 March 2022) This is a small feature release with a few bugfixes. Namely, new `-Xswiftc` option was added for forwarding flags to diff --git a/Sources/CartonHelpers/Version.swift b/Sources/CartonHelpers/Version.swift index b6a69b0..d89da78 100644 --- a/Sources/CartonHelpers/Version.swift +++ b/Sources/CartonHelpers/Version.swift @@ -12,4 +12,4 @@ // See the License for the specific language governing permissions and // limitations under the License. -public let cartonVersion = "0.13.0" +public let cartonVersion = "0.14.0" diff --git a/package-lock.json b/package-lock.json index 6eeba49..29f55f3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,17 +1,17 @@ { "name": "carton", - "version": "0.13.0", + "version": "0.14.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "carton", - "version": "0.13.0", + "version": "0.14.0", "license": "Apache-2.0", "devDependencies": { "@wasmer/wasi": "^0.12.0", "@wasmer/wasmfs": "^0.12.0", - "javascript-kit-swift": "^0.13.0", + "javascript-kit-swift": "^0.14.0", "npm-run-all": "^4.1.5", "reconnecting-websocket": "^4.4.0", "webpack": "^5.64.2", @@ -1287,9 +1287,9 @@ } }, "node_modules/javascript-kit-swift": { - "version": "0.13.0", - "resolved": "https://registry.npmjs.org/javascript-kit-swift/-/javascript-kit-swift-0.13.0.tgz", - "integrity": "sha512-in4kM1g3Gbls4QOg5FXdSLOGXh85E0rR3XrYotYg1so7kVdaJnRJGPCO32cPuEbtGvL8mtZfb51ZhXv7vJkPqg==", + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/javascript-kit-swift/-/javascript-kit-swift-0.14.0.tgz", + "integrity": "sha512-lVC+kOGwY/JmVUBwea9QXymgOG/cA1Z0oULztpH6RjjWhA4NXeBHeuVZvsuTP7cLu0EnGBCeArfab+/yAyjizQ==", "dev": true }, "node_modules/jest-worker": { @@ -3378,9 +3378,9 @@ "dev": true }, "javascript-kit-swift": { - "version": "0.13.0", - "resolved": "https://registry.npmjs.org/javascript-kit-swift/-/javascript-kit-swift-0.13.0.tgz", - "integrity": "sha512-in4kM1g3Gbls4QOg5FXdSLOGXh85E0rR3XrYotYg1so7kVdaJnRJGPCO32cPuEbtGvL8mtZfb51ZhXv7vJkPqg==", + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/javascript-kit-swift/-/javascript-kit-swift-0.14.0.tgz", + "integrity": "sha512-lVC+kOGwY/JmVUBwea9QXymgOG/cA1Z0oULztpH6RjjWhA4NXeBHeuVZvsuTP7cLu0EnGBCeArfab+/yAyjizQ==", "dev": true }, "jest-worker": { diff --git a/package.json b/package.json index 152f93f..5bcdc6d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "carton", - "version": "0.13.0", + "version": "0.14.0", "description": "📦 Watcher, bundler, and test runner for your SwiftWasm apps ", "main": "index.js", "scripts": {