Skip to content

Commit 05c08e6

Browse files
committed
Set version: 1.0.0
1 parent 5629f42 commit 05c08e6

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,16 @@ project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [1.0.0] - 2023-08-04
11+
1012
### Changed
1113

1214
- Introduce `std` (enabled by default) and `unstable` features ([#58]). They
1315
enable corresponding serde’s features and if either is enabled, `Error`
1416
implements `std::error::Error` trait. By itself, `serde-json-wasm` is now
15-
`no_std`; it’s up to serde’s features whether the entire build is. **Please
17+
`no_std`; it’s up to serde’s features whether the entire build is.<br/> **Please
1618
note:** this potentially breaks `default-features = false` builds.
19+
If you need the `Error` trait impl, enable one of the two features explicitly.
1720

1821
- Serialize / deserialize `u128`/`i128` types as numbers instead of strings
1922
([#59]).<br/> **Please note:** this breaks deserialization of `u128`/`i128`
@@ -141,7 +144,8 @@ Initial release after forking from
141144
[serde-json-core](https://github.com/japaric/serde-json-core) at
142145
[bf5533a0](https://github.com/japaric/serde-json-core/commit/bf5533a042a0).
143146

144-
[unreleased]: https://github.com/CosmWasm/serde-json-wasm/compare/v0.5.1...HEAD
147+
[unreleased]: https://github.com/CosmWasm/serde-json-wasm/compare/v1.0.0...HEAD
148+
[1.0.0]: https://github.com/CosmWasm/serde-json-wasm/compare/v0.5.1...v1.0.0
145149
[0.5.1]: https://github.com/CosmWasm/serde-json-wasm/compare/v0.5.0...v0.5.1
146150
[0.5.0]: https://github.com/CosmWasm/serde-json-wasm/compare/v0.4.1...v0.5.0
147151
[0.4.1]: https://github.com/CosmWasm/serde-json-wasm/compare/v0.4.0...v0.4.1

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ license = "MIT OR Apache-2.0"
1515
name = "serde-json-wasm"
1616
readme = "README.md"
1717
repository = "https://github.com/CosmWasm/serde-json-wasm"
18-
version = "0.5.1"
18+
version = "1.0.0"
1919
exclude = [
2020
".cargo/",
2121
".github/",

0 commit comments

Comments
 (0)