Commit afb29ebd authored by Ben Dean-Kawamura's avatar Ben Dean-Kawamura Committed by bendk
Browse files

Releasing 0.25.3

Added changelog entry for 0.25.3 and ran `cargo release`
parent 673e01ff
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -12,7 +12,14 @@

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

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

## v0.25.3 (backend crates: v0.25.3) - (_2023-12-07_)

[All changes in v0.25.3](https://github.com/mozilla/uniffi-rs/compare/v0.25.2...v0.25.3).

- Switched to a patched version of `oneshot` so that consumers who use `cargo vendor` don't vendor
  `loom` and it's sub-dependencies like `windows`

## v0.25.2 (backend crates: v0.25.2) - (_2023-11-20_)

+9 −9
Original line number Diff line number Diff line
@@ -1388,7 +1388,7 @@ dependencies = [

[[package]]
name = "uniffi"
version = "0.25.2"
version = "0.25.3"
dependencies = [
 "anyhow",
 "camino",
@@ -1766,7 +1766,7 @@ dependencies = [

[[package]]
name = "uniffi_bindgen"
version = "0.25.2"
version = "0.25.3"
dependencies = [
 "anyhow",
 "askama",
@@ -1788,7 +1788,7 @@ dependencies = [

[[package]]
name = "uniffi_build"
version = "0.25.2"
version = "0.25.3"
dependencies = [
 "anyhow",
 "camino",
@@ -1797,7 +1797,7 @@ dependencies = [

[[package]]
name = "uniffi_checksum_derive"
version = "0.25.2"
version = "0.25.3"
dependencies = [
 "quote",
 "syn",
@@ -1805,7 +1805,7 @@ dependencies = [

[[package]]
name = "uniffi_core"
version = "0.25.2"
version = "0.25.3"
dependencies = [
 "anyhow",
 "async-compat",
@@ -1820,7 +1820,7 @@ dependencies = [

[[package]]
name = "uniffi_macros"
version = "0.25.2"
version = "0.25.3"
dependencies = [
 "bincode",
 "camino",
@@ -1837,7 +1837,7 @@ dependencies = [

[[package]]
name = "uniffi_meta"
version = "0.25.2"
version = "0.25.3"
dependencies = [
 "anyhow",
 "bytes",
@@ -1847,7 +1847,7 @@ dependencies = [

[[package]]
name = "uniffi_testing"
version = "0.25.2"
version = "0.25.3"
dependencies = [
 "anyhow",
 "camino",
@@ -1858,7 +1858,7 @@ dependencies = [

[[package]]
name = "uniffi_udl"
version = "0.25.2"
version = "0.25.3"
dependencies = [
 "anyhow",
 "uniffi_meta",
+5 −5
Original line number Diff line number Diff line
@@ -7,17 +7,17 @@ repository = "https://github.com/mozilla/uniffi-rs"
# Incrementing the minor version here means a breaking change to consumers.
#   * See `docs/uniffi-versioning.md` for guidance on when to increment this
#   * Make sure to also update `uniffi_bindgen::UNIFFI_CONTRACT_VERSION"
version = "0.25.2"
version = "0.25.3"
authors = ["Firefox Sync Team <sync-team@mozilla.com>"]
license = "MPL-2.0"
edition = "2021"
keywords = ["ffi", "bindgen"]

[dependencies]
uniffi_bindgen = { path = "../uniffi_bindgen", version = "=0.25.2", optional = true }
uniffi_build = { path = "../uniffi_build", version = "=0.25.2", optional = true }
uniffi_core = { path = "../uniffi_core", version = "=0.25.2" }
uniffi_macros = { path = "../uniffi_macros", version = "=0.25.2" }
uniffi_bindgen = { path = "../uniffi_bindgen", version = "=0.25.3", optional = true }
uniffi_build = { path = "../uniffi_build", version = "=0.25.3", optional = true }
uniffi_core = { path = "../uniffi_core", version = "=0.25.3" }
uniffi_macros = { path = "../uniffi_macros", version = "=0.25.3" }
anyhow = "1"
camino = { version = "1.0.8", optional = true }
clap = { version = "4", features = ["cargo", "std", "derive"], optional = true }
+4 −4
Original line number Diff line number Diff line
[package]
name = "uniffi_bindgen"
version = "0.25.2"
version = "0.25.3"
authors = ["Firefox Sync Team <sync-team@mozilla.com>"]
description = "a multi-language bindings generator for rust (codegen and cli tooling)"
documentation = "https://mozilla.github.io/uniffi-rs"
@@ -23,7 +23,7 @@ once_cell = "1.12"
paste = "1.0"
serde = "1"
toml = "0.5"
uniffi_meta = { path = "../uniffi_meta", version = "=0.25.2" }
uniffi_testing = { path = "../uniffi_testing", version = "=0.25.2" }
uniffi_udl = { path = "../uniffi_udl", version = "=0.25.2" }
uniffi_meta = { path = "../uniffi_meta", version = "=0.25.3" }
uniffi_testing = { path = "../uniffi_testing", version = "=0.25.3" }
uniffi_udl = { path = "../uniffi_udl", version = "=0.25.3" }
clap = { version = "4", default-features = false, features = ["std", "derive"], optional = true }
+2 −2
Original line number Diff line number Diff line
[package]
name = "uniffi_build"
version = "0.25.2"
version = "0.25.3"
authors = ["Firefox Sync Team <sync-team@mozilla.com>"]
description = "a multi-language bindings generator for rust (build script helpers)"
documentation = "https://mozilla.github.io/uniffi-rs"
@@ -13,7 +13,7 @@ keywords = ["ffi", "bindgen"]
[dependencies]
anyhow = "1"
camino = "1.0.8"
uniffi_bindgen = { path = "../uniffi_bindgen", default-features = false, version = "=0.25.2" }
uniffi_bindgen = { path = "../uniffi_bindgen", default-features = false, version = "=0.25.3" }

[features]
default = []
Loading