Skip to content

Commit bff92f7

Browse files
committed
chore: Release
1 parent 675f9a3 commit bff92f7

File tree

9 files changed

+45
-45
lines changed

9 files changed

+45
-45
lines changed

Cargo.lock

Lines changed: 26 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

uniffi/Cargo.toml

Lines changed: 3 additions & 3 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.3.0", optional = true }
18-
uniffi_build = { path = "../uniffi_build", version = "=0.3.0", optional = true }
17+
uniffi_bindgen = { path = "../uniffi_bindgen", version = "=0.3.1", optional = true }
18+
uniffi_build = { path = "../uniffi_build", version = "=0.3.1", optional = true }
1919
uniffi_core = { path = "../uniffi_core", version = "=0.25.0" }
20-
uniffi_macros = { path = "../uniffi_macros", version = "=0.3.0" }
20+
uniffi_macros = { path = "../uniffi_macros", version = "=0.3.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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uniffi_bindgen"
3-
version = "0.3.0+v0.25.0"
3+
version = "0.3.1+v0.25.0"
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"
@@ -23,8 +23,8 @@ once_cell = "1.12"
2323
paste = "1.0"
2424
serde = "1"
2525
toml = "0.5"
26-
uniffi_meta = { path = "../uniffi_meta", version = "=0.3.0" }
27-
uniffi_testing = { path = "../uniffi_testing", version = "=0.3.0" }
28-
uniffi_udl = { path = "../uniffi_udl", version = "=0.3.0" }
26+
uniffi_meta = { path = "../uniffi_meta", version = "=0.3.1" }
27+
uniffi_testing = { path = "../uniffi_testing", version = "=0.3.1" }
28+
uniffi_udl = { path = "../uniffi_udl", version = "=0.3.1" }
2929
clap = { version = "4", default-features = false, features = ["std", "derive"], optional = true }
3030
textwrap = "0.16"

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.3.0+v0.25.0"
3+
version = "0.3.1+v0.25.0"
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.3.0" }
16+
uniffi_bindgen = { path = "../uniffi_bindgen", default-features = false, version = "=0.3.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.3.0+v0.25.0"
3+
version = "0.3.1+v0.25.0"
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_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.3.0+v0.25.0"
3+
version = "0.3.1+v0.25.0"
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.3.0" }
27-
uniffi_meta = { path = "../uniffi_meta", version = "=0.3.0" }
26+
uniffi_build = { path = "../uniffi_build", version = "=0.3.1" }
27+
uniffi_meta = { path = "../uniffi_meta", version = "=0.3.1" }
2828

2929
[features]
3030
default = []

uniffi_meta/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_meta"
3-
version = "0.3.0+v0.25.0"
3+
version = "0.3.1+v0.25.0"
44
edition = "2021"
55
description = "uniffi_meta"
66
homepage = "https://mozilla.github.io/uniffi-rs"
@@ -12,4 +12,4 @@ keywords = ["ffi", "bindgen"]
1212
anyhow = "1"
1313
bytes = "1.3"
1414
siphasher = "0.3"
15-
uniffi_checksum_derive = { version = "0.3.0", path = "../uniffi_checksum_derive" }
15+
uniffi_checksum_derive = { version = "0.3.1", path = "../uniffi_checksum_derive" }

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.3.0+v0.25.0"
3+
version = "0.3.1+v0.25.0"
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"

uniffi_udl/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_udl"
3-
version = "0.3.0+v0.25.0"
3+
version = "0.3.1+v0.25.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"
@@ -12,5 +12,5 @@ keywords = ["ffi", "bindgen"]
1212
[dependencies]
1313
anyhow = "1"
1414
weedle2 = { version = "4.0.0", path = "../weedle2" }
15-
uniffi_meta = { path = "../uniffi_meta", version = "=0.3.0" }
16-
uniffi_testing = { path = "../uniffi_testing", version = "=0.3.0" }
15+
uniffi_meta = { path = "../uniffi_meta", version = "=0.3.1" }
16+
uniffi_testing = { path = "../uniffi_testing", version = "=0.3.1" }

0 commit comments

Comments
 (0)