Skip to content

Commit 180da08

Browse files
committed
chore: Release
1 parent 5b8fa52 commit 180da08

File tree

10 files changed

+30
-26
lines changed

10 files changed

+30
-26
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@
44

55
<!-- next-header -->
66

7-
## [[UnreleasedUniFFIVersion]] (backend crates: [[UnreleasedBackendVersion]]) - (_[[ReleaseDate]]_)
7+
## [[NextUnreleasedUniFFIVersion]] (backend crates: [[UnreleasedBackendVersion]]) - (_[[ReleaseDate]]_)
8+
9+
[All changes in [[NextUnreleasedUniFFIVersion]]](https://github.com/mozilla/uniffi-rs/compare/v0.29.0...NEXT_HEAD).
10+
11+
## [[UnreleasedUniFFIVersion]] (backend crates: v0.29.0) - (_2025-02-06_)
812

913
### ⚠️ Breaking Changes ⚠️
1014

Cargo.lock

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

uniffi/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ keywords = ["ffi", "bindgen"]
1414
readme = "../README.md"
1515

1616
[dependencies]
17-
uniffi_bindgen = { path = "../uniffi_bindgen", version = "=0.28.3", optional = true }
18-
uniffi_build = { path = "../uniffi_build", version = "=0.28.3", optional = true }
19-
uniffi_core = { path = "../uniffi_core", version = "=0.28.3" }
20-
uniffi_macros = { path = "../uniffi_macros", version = "=0.28.3" }
17+
uniffi_bindgen = { path = "../uniffi_bindgen", version = "=0.29.0", optional = true }
18+
uniffi_build = { path = "../uniffi_build", version = "=0.29.0", optional = true }
19+
uniffi_core = { path = "../uniffi_core", version = "=0.29.0" }
20+
uniffi_macros = { path = "../uniffi_macros", version = "=0.29.0" }
2121
anyhow = "1"
2222
camino = { version = "1.0.8", optional = true }
2323
cargo_metadata = { version = "0.15", optional = true }

uniffi_bindgen/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uniffi_bindgen"
3-
version = "0.28.3"
3+
version = "0.29.0"
44
description = "a multi-language bindings generator for rust (codegen and cli tooling)"
55
documentation = "https://mozilla.github.io/uniffi-rs"
66
homepage = "https://mozilla.github.io/uniffi-rs"
@@ -29,9 +29,9 @@ once_cell = "1.12"
2929
paste = "1.0"
3030
serde = { version = "1", features = ["derive"] }
3131
toml = "0.5"
32-
uniffi_meta = { path = "../uniffi_meta", version = "=0.28.3" }
33-
uniffi_testing = { path = "../uniffi_testing", version = "=0.28.3", optional = true }
34-
uniffi_udl = { path = "../uniffi_udl", version = "=0.28.3" }
32+
uniffi_meta = { path = "../uniffi_meta", version = "=0.29.0" }
33+
uniffi_testing = { path = "../uniffi_testing", version = "=0.29.0", optional = true }
34+
uniffi_udl = { path = "../uniffi_udl", version = "=0.29.0" }
3535
# Don't include the `unicode-linebreak` or `unicode-width` since that functionality isn't needed for
3636
# docstrings.
3737
textwrap = { version = "0.16", features=["smawk"], default-features = false }

uniffi_build/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uniffi_build"
3-
version = "0.28.3"
3+
version = "0.29.0"
44
description = "a multi-language bindings generator for rust (build script helpers)"
55
documentation = "https://mozilla.github.io/uniffi-rs"
66
homepage = "https://mozilla.github.io/uniffi-rs"
@@ -13,7 +13,7 @@ readme = "../README.md"
1313
[dependencies]
1414
anyhow = "1"
1515
camino = "1.0.8"
16-
uniffi_bindgen = { path = "../uniffi_bindgen", default-features = false, version = "=0.28.3" }
16+
uniffi_bindgen = { path = "../uniffi_bindgen", default-features = false, version = "=0.29.0" }
1717

1818
[features]
1919
default = []

uniffi_core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "a multi-language bindings generator for rust (runtime support cod
44
documentation = "https://mozilla.github.io/uniffi-rs"
55
homepage = "https://mozilla.github.io/uniffi-rs"
66
repository = "https://github.com/mozilla/uniffi-rs"
7-
version = "0.28.3"
7+
version = "0.29.0"
88
license = "MPL-2.0"
99
edition = "2021"
1010
keywords = ["ffi", "bindgen"]

uniffi_macros/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uniffi_macros"
3-
version = "0.28.3"
3+
version = "0.29.0"
44
description = "a multi-language bindings generator for rust (convenience macros)"
55
documentation = "https://mozilla.github.io/uniffi-rs"
66
homepage = "https://mozilla.github.io/uniffi-rs"
@@ -22,8 +22,8 @@ quote = "1.0"
2222
serde = { version = "1.0.136", features = ["derive"] }
2323
syn = { version = "2.0", features = ["full", "visit-mut"] }
2424
toml = "0.5.9"
25-
uniffi_build = { path = "../uniffi_build", version = "=0.28.3", optional = true }
26-
uniffi_meta = { path = "../uniffi_meta", version = "=0.28.3" }
25+
uniffi_build = { path = "../uniffi_build", version = "=0.29.0", optional = true }
26+
uniffi_meta = { path = "../uniffi_meta", version = "=0.29.0" }
2727

2828
[features]
2929
default = []

uniffi_meta/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uniffi_meta"
3-
version = "0.28.3"
3+
version = "0.29.0"
44
edition = "2021"
55
description = "uniffi_meta"
66
homepage = "https://mozilla.github.io/uniffi-rs"

uniffi_testing/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uniffi_testing"
3-
version = "0.28.3"
3+
version = "0.29.0"
44
description = "a multi-language bindings generator for rust (testing helpers)"
55
documentation = "https://mozilla.github.io/uniffi-rs"
66
homepage = "https://mozilla.github.io/uniffi-rs"

uniffi_udl/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uniffi_udl"
3-
version = "0.28.3"
3+
version = "0.29.0"
44
description = "udl parsing for the uniffi project"
55
documentation = "https://mozilla.github.io/uniffi-rs"
66
homepage = "https://mozilla.github.io/uniffi-rs"
@@ -16,4 +16,4 @@ weedle2 = { version = "5.0.0", path = "../weedle2" }
1616
# Don't include the `unicode-linebreak` or `unicode-width` since that functionality isn't needed for
1717
# docstrings.
1818
textwrap = { version = "0.16", features = ["smawk"], default-features = false }
19-
uniffi_meta = { path = "../uniffi_meta", version = "=0.28.3" }
19+
uniffi_meta = { path = "../uniffi_meta", version = "=0.29.0" }

0 commit comments

Comments
 (0)