From abfaeb9a258143ecf89673e01c753e8e762df8fd Mon Sep 17 00:00:00 2001 From: Max Desiatov <max@desiatov.com> Date: Mon, 9 Nov 2020 13:52:11 +0000 Subject: [PATCH] Bump version to 0.8.1, update `CHANGELOG.md` --- CHANGELOG.md | 9 +++++++++ Sources/CartonHelpers/Version.swift | 2 +- Tests/CartonTests/CartonTests.swift | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f49847ef..e7383ca0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# 0.8.2 (9 November 2020) + +This patch release updates the default version of Tokamak in the `carton init` template to fix autocomplete in Xcode. + +**Merged pull requests:** + +- Add minimum deployment target in template ([#165](https://github.com/swiftwasm/carton/pull/165)) via [@kateinoigakukun](https://github.com/kateinoigakukun) +- Remove wasm-strip from log comment ([#164](https://github.com/swiftwasm/carton/pull/164)) via [@kateinoigakukun](https://github.com/kateinoigakukun) + # 0.8.1 (9 November 2020) This patch release updates the default version of Tokamak in templates used by `carton init`. diff --git a/Sources/CartonHelpers/Version.swift b/Sources/CartonHelpers/Version.swift index f18ff51d..f11df387 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.8.1" +public let cartonVersion = "0.8.2" diff --git a/Tests/CartonTests/CartonTests.swift b/Tests/CartonTests/CartonTests.swift index b0225ea4..e92641a4 100644 --- a/Tests/CartonTests/CartonTests.swift +++ b/Tests/CartonTests/CartonTests.swift @@ -41,7 +41,7 @@ final class CartonTests: XCTestCase { let data = pipe.fileHandleForReading.readDataToEndOfFile() let output = String(data: data, encoding: .utf8) - XCTAssertEqual(output?.trimmingCharacters(in: .whitespacesAndNewlines), "0.8.1") + XCTAssertEqual(output?.trimmingCharacters(in: .whitespacesAndNewlines), "0.8.2") } final class TestOutputStream: OutputByteStream {