From 57ab2e7c2419c0f6f2516d1c25142a9fb763ca7a Mon Sep 17 00:00:00 2001 From: Yuta Saito Date: Tue, 10 Dec 2024 14:02:26 +0900 Subject: [PATCH] Bump version to 1.1.3, update CHANGELOG.md --- CHANGELOG.md | 10 ++++++++++ Documentation/RELEASE.md | 2 +- Sources/CartonCore/Misc.swift | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd5d1a12..558e4d25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# 1.1.3 (10 Dec 2024) + +* Inherit all env-var from host and add `--env` option to `carton-test` +* Add `-Xnode` option to `carton test` +* Expose `instantiate` API from bundled package +* Save `default.profraw` after test completed +* Update default toolchain for 6.0 channel +* Reduced the number of dependencies and improved the build time +* Fix test output parser to be incremental and show failed tests + # 1.1.2 (24 Jun 2024) This release includes several bug fixes. diff --git a/Documentation/RELEASE.md b/Documentation/RELEASE.md index 593e10b9..74e9a7cb 100644 --- a/Documentation/RELEASE.md +++ b/Documentation/RELEASE.md @@ -2,7 +2,7 @@ To bump up package version, please follow the below steps: -1. Bump version in `Sources/CartonHelpers/Version.swift` +1. Bump version in `Sources/CartonCore/Misc.swift` 2. Update `CHANGELOG.md` 3. `git commit` 4. `git tag ` diff --git a/Sources/CartonCore/Misc.swift b/Sources/CartonCore/Misc.swift index 33f07485..cc656cf3 100644 --- a/Sources/CartonCore/Misc.swift +++ b/Sources/CartonCore/Misc.swift @@ -19,7 +19,7 @@ public struct CartonCoreError: Error & CustomStringConvertible { public var description: String } -public let cartonVersion = "1.1.2" +public let cartonVersion = "1.1.3" #if compiler(>=6.0) public let defaultToolchainVersion = "wasm-6.0.2-RELEASE"