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.2.2+v0.25.0 #63

Merged
merged 1 commit into from
Nov 13, 2024
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
----

### v0.2.2+v0.25.0

- Fix multiple async packages not working together [#45](https://github.com/NordSecurity/uniffi-bindgen-go/issues/45).
- Add package name to `RustBufferI` if it needs it [#43](https://github.com/NordSecurity/uniffi-bindgen-go/issues/43).
- Fix several issues with the error interface [#36](https://github.com/NordSecurity/uniffi-bindgen-go/issues/36).
- Cleanup callback code.

### v0.2.1+v0.25.0

- Fix generated code when `error` field name is used in an associated error variant
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.

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Minimum Rust version required to install `uniffi-bindgen-go` is `1.70`.
Newer Rust versions should also work fine.

```
cargo install uniffi-bindgen-go --git https://github.com/NordSecurity/uniffi-bindgen-go --tag v0.2.1+v0.25.0
cargo install uniffi-bindgen-go --git https://github.com/NordSecurity/uniffi-bindgen-go --tag v0.2.2+v0.25.0
```

# How to generate bindings
Expand All @@ -22,11 +22,11 @@ uniffi-bindgen-go path/to/definitions.udl

Generates bindings file `path/to/uniffi/definitions/definitions.go`

# Linking
# Linking

You will need to make sure the compiled Rust binaries are in your `LD_LIBRARY_PATH` (set this to `target/release/` if you have built with the `--release` flag, for instance).

You can also create a script to properly link these bindings - see `test_bindings.sh` in the root of this repository for an example.
You can also create a script to properly link these bindings - see `test_bindings.sh` in the root of this repository for an example.

# How to integrate bindings

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-go"
version = "0.2.1+v0.25.0"
version = "0.2.2+v0.25.0"
edition = "2021"

[lib]
Expand Down
Loading