Skip to content

Commit

Permalink
Prepare 2.0.0 release (#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
arendjr authored Jul 18, 2022
1 parent 8b3ef3e commit a3330e3
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# CHANGELOG

## main
## 2.0.0

### Breaking changes

- The `TypeIdent` struct has been altered. If you have custom `Serializable`
implementations you likely need to update those.

### Other changes

- Added Deno support for the TypeScript runtime.
- Reorganized examples and improved documentation.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Fiberplane <info@fiberplane.com>"]
edition = "2018"

[dependencies]
fp-bindgen-support = { path = "../../../../fp-bindgen-support", version = "1.0.0", features = ["async", "guest", "http"] }
fp-bindgen-support = { path = "../../../../fp-bindgen-support", version = "2.0.0", features = ["async", "guest", "http"] }
http = { version = "0.2" }
once_cell = { version = "1.4" }
redux-example = { path = "../../../redux-example" }
Expand Down
4 changes: 2 additions & 2 deletions fp-bindgen-support/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "1.0.0"
version = "2.0.0"
authors = ["Fiberplane <info@fiberplane.com>"]
edition = "2018"
license = "Apache-2.0"
Expand All @@ -13,7 +13,7 @@ license = "Apache-2.0"
all-features = true

[dependencies]
fp-bindgen-macros = { version = "1.0.0", path = "../macros" }
fp-bindgen-macros = { version = "2.0.0", path = "../macros" }
http = { version = "0.2", optional = true }
once_cell = "1"
rmp-serde = "1.0.0"
Expand Down
4 changes: 2 additions & 2 deletions fp-bindgen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repository = "https://github.com/fiberplane/fp-bindgen/"
readme = "../README.md"
keywords = ["WebAssembly", "WASM", "bindgen"]
categories = ["development-tools::ffi", "wasm"]
version = "1.0.0"
version = "2.0.0"
authors = ["Fiberplane <info@fiberplane.com>"]
edition = "2018"
license = "Apache-2.0"
Expand All @@ -23,7 +23,7 @@ time-compat = ["time"]
generators = ["rustfmt-wrapper"]

[dependencies]
fp-bindgen-macros = { version = "1.0.0", path = "../macros" }
fp-bindgen-macros = { version = "2.0.0", path = "../macros" }
http = { version = "0.2", optional = true }
Inflector = "0.11"
pretty_assertions = "1"
Expand Down
2 changes: 1 addition & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "1.0.0"
version = "2.0.0"
authors = ["Fiberplane <info@fiberplane.com>"]
edition = "2018"
license = "Apache-2.0"
Expand Down

0 comments on commit a3330e3

Please sign in to comment.