Commit a0fb6443 authored by Ben Dean-Kawamura's avatar Ben Dean-Kawamura
Browse files

chore: Release

parent 6a2441a5
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -10,13 +10,13 @@

<!-- next-header -->

## [[NextUnreleasedUniFFIVersion]] (backend crates: [[UnreleasedBackendVersion]]) - (_[[ReleaseDate]]_)
## [[UnreleasedUniFFIVersion]] (backend crates: [[UnreleasedBackendVersion]]) - (_[[ReleaseDate]]_)

[All changes in [[NextUnreleasedUniFFIVersion]]](https://github.com/mozilla/uniffi-rs/compare/v0.25.0...NEXT_HEAD).
[All changes in [[UnreleasedUniFFIVersion]]](https://github.com/mozilla/uniffi-rs/compare/v0.25.0...HEAD).

## [[UnreleasedUniFFIVersion]] (backend crates: v0.25.0) - (_2023-10-18_)
## v0.25.0 (backend crates: v0.25.0) - (_2023-10-18_)

[All changes in [[UnreleasedUniFFIVersion]]](https://github.com/mozilla/uniffi-rs/compare/v0.24.3...HEAD).
[All changes in v0.25.0](https://github.com/mozilla/uniffi-rs/compare/v0.24.3...v0.25.0).

### What's new
- Proc-macros can now expose standard Rust traits (eg, `Display`, `Eq`, etc)
+1 −1
Original line number Diff line number Diff line
@@ -1557,7 +1557,7 @@ dependencies = [

[[package]]
name = "uniffi"
version = "0.24.3"
version = "0.25.0"
dependencies = [
 "anyhow",
 "camino",
+1 −1
Original line number Diff line number Diff line
@@ -9,4 +9,4 @@ name = "uniffi-bindgen"
path = "uniffi-bindgen.rs"

[dependencies]
uniffi = { path = "../../../uniffi", version = "0.24", features = ["cli"] }
uniffi = { path = "../../../uniffi", version = "0.25", features = ["cli"] }
+3 −3
Original line number Diff line number Diff line
@@ -11,11 +11,11 @@ crate-type = ["lib", "cdylib"]
name = "arithmetical"

[dependencies]
uniffi = {path = "../../uniffi", version = "0.24" }
uniffi = {path = "../../uniffi", version = "0.25" }
thiserror = "1.0"

[build-dependencies]
uniffi = {path = "../../uniffi", version = "0.24", features = ["build"] }
uniffi = {path = "../../uniffi", version = "0.25", features = ["build"] }

[dev-dependencies]
uniffi = {path = "../../uniffi", version = "0.24", features = ["bindgen-tests"] }
uniffi = {path = "../../uniffi", version = "0.25", features = ["bindgen-tests"] }
+3 −3
Original line number Diff line number Diff line
@@ -11,11 +11,11 @@ crate-type = ["lib", "cdylib"]
name = "uniffi_callbacks"

[dependencies]
uniffi = {path = "../../uniffi", version = "0.24" }
uniffi = {path = "../../uniffi", version = "0.25" }
thiserror = "1.0"

[build-dependencies]
uniffi = {path = "../../uniffi", version = "0.24", features = ["build"] }
uniffi = {path = "../../uniffi", version = "0.25", features = ["build"] }

[dev-dependencies]
uniffi = {path = "../../uniffi", version = "0.24", features = ["bindgen-tests"] }
uniffi = {path = "../../uniffi", version = "0.25", features = ["bindgen-tests"] }
Loading