@@ -6,14 +6,27 @@ The format of this file is based on
6
6
[ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) , and this project
7
7
adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
8
8
9
- ## [ 3.0.0-beta.2 ] - Unreleased
9
+ ## [ 3.0.0] - 2023-04-28
10
10
11
11
### Added
12
12
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 ` .
14
18
15
19
### Changed
16
20
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.
17
30
- ` RustPluginConfig ` now needs to be initialized using
18
31
` RustPluginConfig::builder() ` . Struct initialization syntax will not work
19
32
anymore.
@@ -33,37 +46,13 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
33
46
34
47
### Fixed
35
48
49
+ - Made sure ` cargo check ` doesn't complain about unused imports in the generated
50
+ plugin bindings.
36
51
- Added workaround for imported functions with float arguments for wasmer2 in
37
52
example, see [ #180 ] ( https://github.com/fiberplane/fp-bindgen/issues/180 ) .
38
53
- Fixed async functions returning primitive values, including void async
39
54
functions, see [ #178 ] ( https://github.com/fiberplane/fp-bindgen/issues/178 ) .
40
55
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
-
67
56
## [ 2.4.0] - 2022-10-04
68
57
69
58
### Added
0 commit comments