Bump version to 0.14.0, update `CHANGELOG.md` (#311)

This commit is contained in:
Max Desiatov 2022-04-10 05:39:29 +01:00 committed by GitHub
parent 9c4021d262
commit a03da05ee2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 31 additions and 11 deletions

3
.gitignore vendored
View File

@ -106,3 +106,6 @@ Tests/**/Bundle
# Homebrew
*.bottle.tar.gz
# VS Code
.vscode/launch.json

View File

@ -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

View File

@ -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"

18
package-lock.json generated
View File

@ -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": {

View File

@ -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": {