Skip to content

Commit

Permalink
Bump version to 0.8.1, update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxDesiatov committed Nov 9, 2020
1 parent c9777dd commit abfaeb9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`.
Expand Down
2 changes: 1 addition & 1 deletion Sources/CartonHelpers/Version.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion Tests/CartonTests/CartonTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit abfaeb9

Please sign in to comment.