diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ed0e1a6..bb302250 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.2.1] - 2022-07-18 +### Added +- Add CMake Support +- Add env `CPP_EXAMPLE_PATH` for cpp integration test +- Add a basic generation parser for EIP681 +- Add a Make command `install-uniffi-bindgen` + +### Changed +- Replaced the GH action with manual `cargo clippy` call and removed the duplicate clippy steps/flow +- Replace openssl with rustls +- Change the cargo test executions to use `cargo llvm-cov` +- Improve cpp integration test and assert rust::cxxbridge1::Error +- Replace `grpc-web-client` with `tonic-web-wasm-client` + ## [0.2.0] - 2022-06-21 ### Added - Add polling interval argument or function for setting the polling interval on event filters and pending transactions. diff --git a/bindings/cpp/Cargo.toml b/bindings/cpp/Cargo.toml index 78346725..51516c6a 100644 --- a/bindings/cpp/Cargo.toml +++ b/bindings/cpp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "defi-wallet-core-cpp" -version = "0.2.0" +version = "0.2.1" edition = "2021" rust-version = "1.57" diff --git a/bindings/wasm/Cargo.toml b/bindings/wasm/Cargo.toml index 6eb36b57..dad7a962 100644 --- a/bindings/wasm/Cargo.toml +++ b/bindings/wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "defi-wallet-core-wasm" -version = "0.2.0" +version = "0.2.1" edition = "2021" rust-version = "1.57" diff --git a/common/Cargo.toml b/common/Cargo.toml index 274869d4..3d8bc67a 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "defi-wallet-core-common" -version = "0.2.0" +version = "0.2.1" edition = "2021" rust-version = "1.57"