From 8ec3b335844d162a2c125f754a69f633321cddc7 Mon Sep 17 00:00:00 2001 From: Arend van Beelen jr Date: Mon, 15 Aug 2022 17:01:25 +0200 Subject: [PATCH] Prepare 2.1.0 release (#136) --- CHANGELOG.md | 2 +- .../src/assets/rust_plugin_test/expected_Cargo.toml | 2 +- fp-bindgen-support/Cargo.toml | 4 ++-- fp-bindgen/Cargo.toml | 4 ++-- macros/Cargo.toml | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 73cc6ddd..bcb4bdd6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # CHANGELOG -## main +## 2.1.0 - Add support for arrays of primitives (#94). - Added the `bytes-compat` feature for compatibility with the `bytes` crate. diff --git a/examples/example-protocol/src/assets/rust_plugin_test/expected_Cargo.toml b/examples/example-protocol/src/assets/rust_plugin_test/expected_Cargo.toml index 26a65bc9..82cc9a49 100644 --- a/examples/example-protocol/src/assets/rust_plugin_test/expected_Cargo.toml +++ b/examples/example-protocol/src/assets/rust_plugin_test/expected_Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] bytes = { version = "1", features = ["serde"] } -fp-bindgen-support = { path = "../../../../fp-bindgen-support", version = "2.0.1", features = ["async", "guest", "http"] } +fp-bindgen-support = { path = "../../../../fp-bindgen-support", version = "2.1.0", features = ["async", "guest", "http"] } http = { version = "0.2" } once_cell = { version = "1.4" } redux-example = { path = "../../../redux-example" } diff --git a/fp-bindgen-support/Cargo.toml b/fp-bindgen-support/Cargo.toml index 818bd93b..dc6d8889 100644 --- a/fp-bindgen-support/Cargo.toml +++ b/fp-bindgen-support/Cargo.toml @@ -4,7 +4,7 @@ description = "Support crate for fp-bindgen" homepage = "https://github.com/fiberplane/fp-bindgen/" repository = "https://github.com/fiberplane/fp-bindgen/" readme = "README.md" -version = "2.0.1" +version = "2.1.0" authors = ["Fiberplane "] edition = "2018" license = "Apache-2.0" @@ -13,7 +13,7 @@ license = "Apache-2.0" all-features = true [dependencies] -fp-bindgen-macros = { version = "2.0.1", path = "../macros" } +fp-bindgen-macros = { version = "2.1.0", path = "../macros" } http = { version = "0.2", optional = true } once_cell = "1" rmp-serde = "1.0.0" diff --git a/fp-bindgen/Cargo.toml b/fp-bindgen/Cargo.toml index ada93491..034ea33b 100644 --- a/fp-bindgen/Cargo.toml +++ b/fp-bindgen/Cargo.toml @@ -6,7 +6,7 @@ repository = "https://github.com/fiberplane/fp-bindgen/" readme = "../README.md" keywords = ["WebAssembly", "WASM", "bindgen"] categories = ["development-tools::ffi", "wasm"] -version = "2.0.1" +version = "2.1.0" authors = ["Fiberplane "] edition = "2018" license = "Apache-2.0" @@ -25,7 +25,7 @@ generators = ["rustfmt-wrapper"] [dependencies] bytes = { version = "1", features = ["serde"], optional = true } -fp-bindgen-macros = { version = "2.0.1", path = "../macros" } +fp-bindgen-macros = { version = "2.1.0", path = "../macros" } http = { version = "0.2", optional = true } Inflector = "0.11" pretty_assertions = "1" diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 62d81e27..4acdd350 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -4,7 +4,7 @@ description = "Macros for fp-bindgen" homepage = "https://github.com/fiberplane/fp-bindgen/" repository = "https://github.com/fiberplane/fp-bindgen/" readme = "README.md" -version = "2.0.1" +version = "2.1.0" authors = ["Fiberplane "] edition = "2018" license = "Apache-2.0"