From 69d5c19ac08b20f036d2be33aa57decb4037e116 Mon Sep 17 00:00:00 2001 From: jubianchi Date: Fri, 5 Feb 2021 22:38:06 +0100 Subject: [PATCH] chore: Prepare for 1.0.0 --- CHANGELOG.md | 18 ++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 16dae2f8..f101fff1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ All notable changes to this project will be documented in this file. ## Table of Contents +* [1.0.0](#100---2021-02-05) * [1.0.0-beta2](#100-beta2---2021-01-05) * [1.0.0-beta1](#100-beta1---2020-12-03) * [0.3.1](#031---2020-02-03) @@ -11,6 +12,21 @@ All notable changes to this project will be documented in this file. * [0.2.0](#020---2019-07-16) * [0.1.0](#010---2019-05-29) +## [1.0.0] - 2021-02-05 + +### Added + +* Implement traps +* Allow choosing an engine and a compiler through the configuration +* Added support for `aarch64` +* Implement WASI +* Implement corss-compilation +* Add support for host function environment + +### Changed + +* Update to Wasmer 1.0.2 + ## [1.0.0-beta2] - 2021-01-05 ### Changed @@ -358,6 +374,8 @@ All notable changes to this project will be documented in this file. First release. +[1.0.0]: https://github.com/wasmerio/wasmer-go/compare/v1.0.0-beta2...v1.0.0 +[1.0.0-beta2]: https://github.com/wasmerio/wasmer-go/compare/v1.0.0-beta1...v1.0.0-beta2 [1.0.0-beta1]: https://github.com/wasmerio/wasmer-go/compare/v0.3.1...v1.0.0-beta1 [0.3.1]: https://github.com/wasmerio/wasmer-go/compare/0.3.0...v0.3.1 [0.3.0]: https://github.com/wasmerio/wasmer-go/compare/0.2.0...0.3.0 diff --git a/Cargo.toml b/Cargo.toml index 5073e435..e04ea9ee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] publish = false name = "wasmer-go" -version = "1.0.0-beta2" +version = "1.0.0" authors = ["Wasmer Engineering Team "] edition = "2018" description = "Go library to run WebAssembly binaries"