Skip to content

Commit

Permalink
Set version: 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chipshort committed Aug 4, 2023
1 parent 5629f42 commit 05c08e6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,16 @@ project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [1.0.0] - 2023-08-04

### Changed

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

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

[unreleased]: https://github.com/CosmWasm/serde-json-wasm/compare/v0.5.1...HEAD
[unreleased]: https://github.com/CosmWasm/serde-json-wasm/compare/v1.0.0...HEAD
[1.0.0]: https://github.com/CosmWasm/serde-json-wasm/compare/v0.5.1...v1.0.0
[0.5.1]: https://github.com/CosmWasm/serde-json-wasm/compare/v0.5.0...v0.5.1
[0.5.0]: https://github.com/CosmWasm/serde-json-wasm/compare/v0.4.1...v0.5.0
[0.4.1]: https://github.com/CosmWasm/serde-json-wasm/compare/v0.4.0...v0.4.1
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ license = "MIT OR Apache-2.0"
name = "serde-json-wasm"
readme = "README.md"
repository = "https://github.com/CosmWasm/serde-json-wasm"
version = "0.5.1"
version = "1.0.0"
exclude = [
".cargo/",
".github/",
Expand Down

0 comments on commit 05c08e6

Please sign in to comment.