diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f0349d..2bb26cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ + +### v0.8.4+v0.25.0 + +- **NEW**: Implement async methods [#101](https://github.com/NordSecurity/uniffi-bindgen-cs/pull/101) +- Fix enums/errors case names shadowing parameters to top level type names [#95](https://github.com/NordSecurity/uniffi-bindgen-cs/pull/95) +- Ensure type names are generated uniformly independent of capitalization [#103](https://github.com/NordSecurity/uniffi-bindgen-cs/pull/103) +- Implement Eq and Hash trait methods [#97](https://github.com/NordSecurity/uniffi-bindgen-cs/pull/97) +- Fix empty struct [#94](https://github.com/NordSecurity/uniffi-bindgen-cs/pull/94) +- Fix error type named "Error" [#93](https://github.com/NordSecurity/uniffi-bindgen-cs/pull/93) + ### v0.8.3+v0.25.0 - **IMPORTANT**: Fix short-lived callback lifetimes [#79](https://github.com/NordSecurity/uniffi-bindgen-cs/issues/79) diff --git a/Cargo.lock b/Cargo.lock index 839def1..f4c2b2d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1213,7 +1213,7 @@ dependencies = [ [[package]] name = "uniffi-bindgen-cs" -version = "0.8.3+v0.25.0" +version = "0.8.4+v0.25.0" dependencies = [ "anyhow", "askama 0.11.1", diff --git a/README.md b/README.md index 19ed0b4..8f868bb 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Minimum Rust version required to install `uniffi-bindgen-cs` is `1.72`. Newer Rust versions should also work fine. ```bash -cargo install uniffi-bindgen-cs --git https://github.com/NordSecurity/uniffi-bindgen-cs --tag v0.8.3+v0.25.0 +cargo install uniffi-bindgen-cs --git https://github.com/NordSecurity/uniffi-bindgen-cs --tag v0.8.4+v0.25.0 ``` # How to generate bindings @@ -50,8 +50,6 @@ The following uniffi features are unsupported. - External types [#40](https://github.com/NordSecurity/uniffi-bindgen-cs/issues/40) -- Async functions [#41](https://github.com/NordSecurity/uniffi-bindgen-cs/issues/41) - # Configuration options It's possible to [configure some settings](docs/CONFIGURATION.md) by passing `--config` diff --git a/bindgen/Cargo.toml b/bindgen/Cargo.toml index 9775d0f..a94aac5 100644 --- a/bindgen/Cargo.toml +++ b/bindgen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uniffi-bindgen-cs" -version = "0.8.3+v0.25.0" +version = "0.8.4+v0.25.0" edition = "2021" [lib]