Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump v0.8.4+v0.25.0 #104

Merged
merged 1 commit into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
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.

4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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`
Expand Down
2 changes: 1 addition & 1 deletion bindgen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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]
Expand Down
Loading