Skip to content

Commit 4e95816

Browse files
authoredApr 28, 2023
Prepare 3.0.0 release (#193)
1 parent 4671a0c commit 4e95816

File tree

4 files changed

+21
-32
lines changed

4 files changed

+21
-32
lines changed
 

‎CHANGELOG.md

+17-28
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,27 @@ The format of this file is based on
66
[Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project
77
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

9-
## [3.0.0-beta.2] - Unreleased
9+
## [3.0.0] - 2023-04-28
1010

1111
### Added
1212

13-
- Add `description`, `readme` and `license` fields to `RustPluginConfig`.
13+
- Added support for `serde_json::Map`
14+
(https://github.com/fiberplane/fp-bindgen/pull/163).
15+
- Added support for specifying custom Cargo registries with `CargoDependency`.
16+
- Added helpers for building `CargoDependency` with a git repository.
17+
- Added `description`, `readme` and `license` fields to `RustPluginConfig`.
1418

1519
### Changed
1620

21+
- Added MIT as an option to the project licensing.
22+
- Replaced the `rust_plugin_module` and `rust_wasmer_runtime_module` annotations
23+
with a single `rust_module` annotation.
24+
- Struct fields annotated with `skip_serializing_if` are treated as optional by
25+
the TypeScript binding generator.
26+
- Struct fields generated by `fp-bindgen` will not automatically add any Serde
27+
annotations that were not there in the original protocol definition.
28+
- `CargoDependency` is now marked as non-exhaustive to prevent future breaking
29+
changes.
1730
- `RustPluginConfig` now needs to be initialized using
1831
`RustPluginConfig::builder()`. Struct initialization syntax will not work
1932
anymore.
@@ -33,37 +46,13 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
3346

3447
### Fixed
3548

49+
- Made sure `cargo check` doesn't complain about unused imports in the generated
50+
plugin bindings.
3651
- Added workaround for imported functions with float arguments for wasmer2 in
3752
example, see [#180](https://github.com/fiberplane/fp-bindgen/issues/180).
3853
- Fixed async functions returning primitive values, including void async
3954
functions, see [#178](https://github.com/fiberplane/fp-bindgen/issues/178).
4055

41-
## [3.0.0-beta.1] - 2023-02-14
42-
43-
### Added
44-
45-
- Add support for `serde_json::Map`
46-
(https://github.com/fiberplane/fp-bindgen/pull/163).
47-
- Added support for specifying custom Cargo registries with `CargoDependency`.
48-
- Added helpers for building `CargoDependency` with a git repository.
49-
50-
### Changed
51-
52-
- Added MIT as an option to the project licensing.
53-
- Replaced the `rust_plugin_module` and `rust_wasmer_runtime_module` annotations
54-
with a single `rust_module` annotation.
55-
- Struct fields annotated with `skip_serializing_if` are treated as optional by
56-
the TypeScript binding generator.
57-
- Struct fields generated by `fp-bindgen` will not automatically add any Serde
58-
annotations that were not there in the original protocol definition.
59-
- `CargoDependency` is now marked as non-exhaustive to prevent future breaking
60-
changes.
61-
62-
### Fixed
63-
64-
- Make sure `cargo check` doesn't complain about unused imports in the generated
65-
plugin bindings.
66-
6756
## [2.4.0] - 2022-10-04
6857

6958
### Added

‎Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ members = [
1414
]
1515

1616
[workspace.dependencies]
17-
fp-bindgen-macros = { version = "3.0.0-beta.2", path = "macros" }
17+
fp-bindgen-macros = { version = "3.0.0", path = "macros" }
1818

1919
[workspace.package]
20-
version = "3.0.0-beta.2"
20+
version = "3.0.0"
2121
authors = ["Fiberplane <info@fiberplane.com>"]
2222
edition = "2018"
2323
license = "MIT OR Apache-2.0"

‎examples/example-protocol/src/assets/rust_plugin_test/expected_Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = { workspace = true }
99

1010
[dependencies]
1111
bytes = { version = "1", features = ["serde"] }
12-
fp-bindgen-support = { path = "../../../../fp-bindgen-support", version = "3.0.0-beta.2", features = ["async", "guest", "http"] }
12+
fp-bindgen-support = { path = "../../../../fp-bindgen-support", version = "3.0.0", features = ["async", "guest", "http"] }
1313
http = { version = "0.2" }
1414
once_cell = { version = "1" }
1515
redux-example = { path = "../../../redux-example" }

‎examples/example-protocol/src/assets/rust_plugin_test/expected_Cargo_no_optionals.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2018"
66

77
[dependencies]
88
bytes = { version = "1", features = ["serde"] }
9-
fp-bindgen-support = { path = "../../../../fp-bindgen-support", version = "3.0.0-beta.2", features = ["async", "guest", "http"] }
9+
fp-bindgen-support = { path = "../../../../fp-bindgen-support", version = "3.0.0", features = ["async", "guest", "http"] }
1010
http = { version = "0.2" }
1111
once_cell = { version = "1" }
1212
redux-example = { path = "../../../redux-example" }

0 commit comments

Comments
 (0)