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

chore: Release

parent 5b8fa520
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -4,7 +4,11 @@

<!-- next-header -->

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

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

## [[UnreleasedUniFFIVersion]] (backend crates: v0.29.0) - (_2025-02-06_)

### ⚠️ Breaking Changes ⚠️

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

[[package]]
name = "uniffi_bindgen"
version = "0.28.3"
version = "0.29.0"
dependencies = [
 "anyhow",
 "camino",
@@ -2051,7 +2051,7 @@ dependencies = [

[[package]]
name = "uniffi_build"
version = "0.28.3"
version = "0.29.0"
dependencies = [
 "anyhow",
 "camino",
@@ -2060,7 +2060,7 @@ dependencies = [

[[package]]
name = "uniffi_core"
version = "0.28.3"
version = "0.29.0"
dependencies = [
 "anyhow",
 "async-compat",
@@ -2080,7 +2080,7 @@ dependencies = [

[[package]]
name = "uniffi_macros"
version = "0.28.3"
version = "0.29.0"
dependencies = [
 "camino",
 "fs-err",
@@ -2096,7 +2096,7 @@ dependencies = [

[[package]]
name = "uniffi_meta"
version = "0.28.3"
version = "0.29.0"
dependencies = [
 "anyhow",
 "siphasher",
@@ -2105,7 +2105,7 @@ dependencies = [

[[package]]
name = "uniffi_testing"
version = "0.28.3"
version = "0.29.0"
dependencies = [
 "anyhow",
 "camino",
@@ -2116,7 +2116,7 @@ dependencies = [

[[package]]
name = "uniffi_udl"
version = "0.28.3"
version = "0.29.0"
dependencies = [
 "anyhow",
 "textwrap",
+4 −4
Original line number Diff line number Diff line
@@ -14,10 +14,10 @@ keywords = ["ffi", "bindgen"]
readme = "../README.md"

[dependencies]
uniffi_bindgen = { path = "../uniffi_bindgen", version = "=0.28.3", optional = true }
uniffi_build = { path = "../uniffi_build", version = "=0.28.3", optional = true }
uniffi_core = { path = "../uniffi_core", version = "=0.28.3" }
uniffi_macros = { path = "../uniffi_macros", version = "=0.28.3" }
uniffi_bindgen = { path = "../uniffi_bindgen", version = "=0.29.0", optional = true }
uniffi_build = { path = "../uniffi_build", version = "=0.29.0", optional = true }
uniffi_core = { path = "../uniffi_core", version = "=0.29.0" }
uniffi_macros = { path = "../uniffi_macros", version = "=0.29.0" }
anyhow = "1"
camino = { version = "1.0.8", optional = true }
cargo_metadata = { version = "0.15", optional = true }
+4 −4
Original line number Diff line number Diff line
[package]
name = "uniffi_bindgen"
version = "0.28.3"
version = "0.29.0"
description = "a multi-language bindings generator for rust (codegen and cli tooling)"
documentation = "https://mozilla.github.io/uniffi-rs"
homepage = "https://mozilla.github.io/uniffi-rs"
@@ -29,9 +29,9 @@ once_cell = "1.12"
paste = "1.0"
serde = { version = "1", features = ["derive"] }
toml = "0.5"
uniffi_meta = { path = "../uniffi_meta", version = "=0.28.3" }
uniffi_testing = { path = "../uniffi_testing", version = "=0.28.3", optional = true }
uniffi_udl = { path = "../uniffi_udl", version = "=0.28.3" }
uniffi_meta = { path = "../uniffi_meta", version = "=0.29.0" }
uniffi_testing = { path = "../uniffi_testing", version = "=0.29.0", optional = true }
uniffi_udl = { path = "../uniffi_udl", version = "=0.29.0" }
# Don't include the `unicode-linebreak` or `unicode-width` since that functionality isn't needed for
# docstrings.
textwrap = { version = "0.16", features=["smawk"], default-features = false }
+2 −2
Original line number Diff line number Diff line
[package]
name = "uniffi_build"
version = "0.28.3"
version = "0.29.0"
description = "a multi-language bindings generator for rust (build script helpers)"
documentation = "https://mozilla.github.io/uniffi-rs"
homepage = "https://mozilla.github.io/uniffi-rs"
@@ -13,7 +13,7 @@ readme = "../README.md"
[dependencies]
anyhow = "1"
camino = "1.0.8"
uniffi_bindgen = { path = "../uniffi_bindgen", default-features = false, version = "=0.28.3" }
uniffi_bindgen = { path = "../uniffi_bindgen", default-features = false, version = "=0.29.0" }

[features]
default = []
Loading