Skip to content

Commit 217d4cc

Browse files
committed
chore: Release
1 parent c5afe07 commit 217d4cc

File tree

9 files changed

+23
-19
lines changed

9 files changed

+23
-19
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@
1010

1111
<!-- next-header -->
1212

13-
## [[UnreleasedUniFFIVersion]] (backend crates: [[UnreleasedBackendVersion]]) - (_[[ReleaseDate]]_)
13+
## [[NextUnreleasedUniFFIVersion]] (backend crates: [[UnreleasedBackendVersion]]) - (_[[ReleaseDate]]_)
14+
15+
[All changes in [[NextUnreleasedUniFFIVersion]]](https://github.com/mozilla/uniffi-rs/compare/v0.24.1...NEXT_HEAD).
16+
17+
## [[UnreleasedUniFFIVersion]] (backend crates: v0.24.1) - (_2023-06-23_)
1418

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

uniffi/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ edition = "2021"
1414
keywords = ["ffi", "bindgen"]
1515

1616
[dependencies]
17-
uniffi_bindgen = { path = "../uniffi_bindgen", version = "=0.24.0", optional = true }
18-
uniffi_build = { path = "../uniffi_build", version = "=0.24.0", optional = true }
19-
uniffi_core = { path = "../uniffi_core", version = "=0.24.0" }
20-
uniffi_macros = { path = "../uniffi_macros", version = "=0.24.0" }
17+
uniffi_bindgen = { path = "../uniffi_bindgen", version = "=0.24.1", optional = true }
18+
uniffi_build = { path = "../uniffi_build", version = "=0.24.1", optional = true }
19+
uniffi_core = { path = "../uniffi_core", version = "=0.24.1" }
20+
uniffi_macros = { path = "../uniffi_macros", version = "=0.24.1" }
2121
anyhow = "1"
2222
camino = { version = "1.0.8", optional = true }
2323
clap = { version = "4", features = ["cargo", "std", "derive"], optional = true }

uniffi_bindgen/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uniffi_bindgen"
3-
version = "0.24.0"
3+
version = "0.24.1"
44
authors = ["Firefox Sync Team <[email protected]>"]
55
description = "a multi-language bindings generator for rust (codegen and cli tooling)"
66
documentation = "https://mozilla.github.io/uniffi-rs"
@@ -25,6 +25,6 @@ serde = "1"
2525
serde_json = "1.0.80"
2626
toml = "0.5"
2727
weedle2 = { version = "4.0.0", path = "../weedle2" }
28-
uniffi_meta = { path = "../uniffi_meta", version = "=0.24.0" }
29-
uniffi_testing = { path = "../uniffi_testing", version = "=0.24.0" }
28+
uniffi_meta = { path = "../uniffi_meta", version = "=0.24.1" }
29+
uniffi_testing = { path = "../uniffi_testing", version = "=0.24.1" }
3030
clap = { version = "4", default-features = false, features = ["std", "derive"], optional = true }

uniffi_build/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uniffi_build"
3-
version = "0.24.0"
3+
version = "0.24.1"
44
authors = ["Firefox Sync Team <[email protected]>"]
55
description = "a multi-language bindings generator for rust (build script helpers)"
66
documentation = "https://mozilla.github.io/uniffi-rs"
@@ -13,7 +13,7 @@ keywords = ["ffi", "bindgen"]
1313
[dependencies]
1414
anyhow = "1"
1515
camino = "1.0.8"
16-
uniffi_bindgen = { path = "../uniffi_bindgen", default-features = false, version = "=0.24.0" }
16+
uniffi_bindgen = { path = "../uniffi_bindgen", default-features = false, version = "=0.24.1" }
1717

1818
[features]
1919
default = []

uniffi_checksum_derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uniffi_checksum_derive"
3-
version = "0.24.0"
3+
version = "0.24.1"
44
authors = ["Firefox Sync Team <[email protected]>"]
55
description = "a multi-language bindings generator for rust (checksum custom derive)"
66
documentation = "https://mozilla.github.io/uniffi-rs"

uniffi_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.24.0"
7+
version = "0.24.1"
88
authors = ["Firefox Sync Team <[email protected]>"]
99
license = "MPL-2.0"
1010
edition = "2021"

uniffi_macros/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uniffi_macros"
3-
version = "0.24.0"
3+
version = "0.24.1"
44
authors = ["Firefox Sync Team <[email protected]>"]
55
description = "a multi-language bindings generator for rust (convenience macros)"
66
documentation = "https://mozilla.github.io/uniffi-rs"
@@ -23,8 +23,8 @@ quote = "1.0"
2323
serde = "1.0.136"
2424
syn = { version = "2.0", features = ["full", "visit-mut"] }
2525
toml = "0.5.9"
26-
uniffi_build = { path = "../uniffi_build", version = "=0.24.0" }
27-
uniffi_meta = { path = "../uniffi_meta", version = "=0.24.0" }
26+
uniffi_build = { path = "../uniffi_build", version = "=0.24.1" }
27+
uniffi_meta = { path = "../uniffi_meta", version = "=0.24.1" }
2828

2929
[features]
3030
default = []

uniffi_meta/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uniffi_meta"
3-
version = "0.24.0"
3+
version = "0.24.1"
44
edition = "2021"
55
description = "uniffi_meta"
66
homepage = "https://mozilla.github.io/uniffi-rs"
@@ -13,5 +13,5 @@ anyhow = "1"
1313
bytes = "1.3"
1414
serde = { version = "1.0.136", features = ["derive"] }
1515
siphasher = "0.3"
16-
uniffi_checksum_derive = { version = "0.24.0", path = "../uniffi_checksum_derive" }
17-
uniffi_core = { path = "../uniffi_core", version = "=0.24.0" }
16+
uniffi_checksum_derive = { version = "0.24.1", path = "../uniffi_checksum_derive" }
17+
uniffi_core = { path = "../uniffi_core", version = "=0.24.1" }

uniffi_testing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uniffi_testing"
3-
version = "0.24.0"
3+
version = "0.24.1"
44
authors = ["Firefox Sync Team <[email protected]>"]
55
description = "a multi-language bindings generator for rust (testing helpers)"
66
documentation = "https://mozilla.github.io/uniffi-rs"

0 commit comments

Comments
 (0)