Commit 3a98e52e authored by Mark Hammond's avatar Mark Hammond
Browse files

chore: Release

parent 0c329db8
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.1...NEXT_HEAD).

## [[UnreleasedUniFFIVersion]] (backend crates: v0.29.1) - (_2025-03-18_)

### What's fixed?

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

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

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

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

[[package]]
name = "uniffi_internal_macros"
version = "0.29.0"
version = "0.29.1"
dependencies = [
 "quote",
 "syn",
@@ -2086,7 +2086,7 @@ dependencies = [

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

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

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

[[package]]
name = "uniffi_udl"
version = "0.29.0"
version = "0.29.1"
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.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" }
uniffi_bindgen = { path = "../uniffi_bindgen", version = "=0.29.1", optional = true }
uniffi_build = { path = "../uniffi_build", version = "=0.29.1", optional = true }
uniffi_core = { path = "../uniffi_core", version = "=0.29.1" }
uniffi_macros = { path = "../uniffi_macros", version = "=0.29.1" }
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.29.0"
version = "0.29.1"
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.29.0" }
uniffi_testing = { path = "../uniffi_testing", version = "=0.29.0", optional = true }
uniffi_udl = { path = "../uniffi_udl", version = "=0.29.0" }
uniffi_meta = { path = "../uniffi_meta", version = "=0.29.1" }
uniffi_testing = { path = "../uniffi_testing", version = "=0.29.1", optional = true }
uniffi_udl = { path = "../uniffi_udl", version = "=0.29.1" }
# 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.29.0"
version = "0.29.1"
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.29.0" }
uniffi_bindgen = { path = "../uniffi_bindgen", default-features = false, version = "=0.29.1" }

[features]
default = []
Loading