Bump version to 0.8.1, update `CHANGELOG.md`

This commit is contained in:
Max Desiatov 2020-11-09 13:52:11 +00:00
parent c9777ddf66
commit abfaeb9a25
No known key found for this signature in database
GPG Key ID: FE08EBF9CF58CBA2
3 changed files with 11 additions and 2 deletions

View File

@ -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) # 0.8.1 (9 November 2020)
This patch release updates the default version of Tokamak in templates used by `carton init`. This patch release updates the default version of Tokamak in templates used by `carton init`.

View File

@ -12,4 +12,4 @@
// See the License for the specific language governing permissions and // See the License for the specific language governing permissions and
// limitations under the License. // limitations under the License.
public let cartonVersion = "0.8.1" public let cartonVersion = "0.8.2"

View File

@ -41,7 +41,7 @@ final class CartonTests: XCTestCase {
let data = pipe.fileHandleForReading.readDataToEndOfFile() let data = pipe.fileHandleForReading.readDataToEndOfFile()
let output = String(data: data, encoding: .utf8) 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 { final class TestOutputStream: OutputByteStream {