Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
bendk committed Mar 26, 2024
1 parent 2a81b2e commit 6f1f9b7
Show file tree
Hide file tree
Showing 11 changed files with 34 additions and 30 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.27.0...NEXT_HEAD).

## [[UnreleasedUniFFIVersion]] (backend crates: v0.27.0) - (_2024-03-26_)

### What's new?

Expand Down
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions uniffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ keywords = ["ffi", "bindgen"]
readme = "../README.md"

[dependencies]
uniffi_bindgen = { path = "../uniffi_bindgen", version = "=0.26.1", optional = true }
uniffi_build = { path = "../uniffi_build", version = "=0.26.1", optional = true }
uniffi_core = { path = "../uniffi_core", version = "=0.26.1" }
uniffi_macros = { path = "../uniffi_macros", version = "=0.26.1" }
uniffi_bindgen = { path = "../uniffi_bindgen", version = "=0.27.0", optional = true }
uniffi_build = { path = "../uniffi_build", version = "=0.27.0", optional = true }
uniffi_core = { path = "../uniffi_core", version = "=0.27.0" }
uniffi_macros = { path = "../uniffi_macros", version = "=0.27.0" }
anyhow = "1"
camino = { version = "1.0.8", optional = true }
clap = { version = "4", features = ["cargo", "std", "derive"], optional = true }
Expand Down
8 changes: 4 additions & 4 deletions uniffi_bindgen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uniffi_bindgen"
version = "0.26.1"
version = "0.27.0"
authors = ["Firefox Sync Team <[email protected]>"]
description = "a multi-language bindings generator for rust (codegen and cli tooling)"
documentation = "https://mozilla.github.io/uniffi-rs"
Expand All @@ -24,8 +24,8 @@ once_cell = "1.12"
paste = "1.0"
serde = { version = "1", features = ["derive"] }
toml = "0.5"
uniffi_meta = { path = "../uniffi_meta", version = "=0.26.1" }
uniffi_testing = { path = "../uniffi_testing", version = "=0.26.1" }
uniffi_udl = { path = "../uniffi_udl", version = "=0.26.1" }
uniffi_meta = { path = "../uniffi_meta", version = "=0.27.0" }
uniffi_testing = { path = "../uniffi_testing", version = "=0.27.0" }
uniffi_udl = { path = "../uniffi_udl", version = "=0.27.0" }
clap = { version = "4", default-features = false, features = ["std", "derive"], optional = true }
textwrap = "0.16"
4 changes: 2 additions & 2 deletions uniffi_build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uniffi_build"
version = "0.26.1"
version = "0.27.0"
authors = ["Firefox Sync Team <[email protected]>"]
description = "a multi-language bindings generator for rust (build script helpers)"
documentation = "https://mozilla.github.io/uniffi-rs"
Expand All @@ -14,7 +14,7 @@ readme = "../README.md"
[dependencies]
anyhow = "1"
camino = "1.0.8"
uniffi_bindgen = { path = "../uniffi_bindgen", default-features = false, version = "=0.26.1" }
uniffi_bindgen = { path = "../uniffi_bindgen", default-features = false, version = "=0.27.0" }

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion uniffi_checksum_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uniffi_checksum_derive"
version = "0.26.1"
version = "0.27.0"
authors = ["Firefox Sync Team <[email protected]>"]
description = "a multi-language bindings generator for rust (checksum custom derive)"
documentation = "https://mozilla.github.io/uniffi-rs"
Expand Down
2 changes: 1 addition & 1 deletion uniffi_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "a multi-language bindings generator for rust (runtime support cod
documentation = "https://mozilla.github.io/uniffi-rs"
homepage = "https://mozilla.github.io/uniffi-rs"
repository = "https://github.com/mozilla/uniffi-rs"
version = "0.26.1"
version = "0.27.0"
authors = ["Firefox Sync Team <[email protected]>"]
license = "MPL-2.0"
edition = "2021"
Expand Down
6 changes: 3 additions & 3 deletions uniffi_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uniffi_macros"
version = "0.26.1"
version = "0.27.0"
authors = ["Firefox Sync Team <[email protected]>"]
description = "a multi-language bindings generator for rust (convenience macros)"
documentation = "https://mozilla.github.io/uniffi-rs"
Expand All @@ -24,8 +24,8 @@ quote = "1.0"
serde = { version = "1.0.136", features = ["derive"] }
syn = { version = "2.0", features = ["full", "visit-mut"] }
toml = "0.5.9"
uniffi_build = { path = "../uniffi_build", version = "=0.26.1", optional = true }
uniffi_meta = { path = "../uniffi_meta", version = "=0.26.1" }
uniffi_build = { path = "../uniffi_build", version = "=0.27.0", optional = true }
uniffi_meta = { path = "../uniffi_meta", version = "=0.27.0" }

[features]
default = []
Expand Down
4 changes: 2 additions & 2 deletions uniffi_meta/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uniffi_meta"
version = "0.26.1"
version = "0.27.0"
edition = "2021"
description = "uniffi_meta"
homepage = "https://mozilla.github.io/uniffi-rs"
Expand All @@ -13,4 +13,4 @@ readme = "../README.md"
anyhow = "1"
bytes = "1.3"
siphasher = "0.3"
uniffi_checksum_derive = { version = "0.26.1", path = "../uniffi_checksum_derive" }
uniffi_checksum_derive = { version = "0.27.0", path = "../uniffi_checksum_derive" }
2 changes: 1 addition & 1 deletion uniffi_testing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uniffi_testing"
version = "0.26.1"
version = "0.27.0"
authors = ["Firefox Sync Team <[email protected]>"]
description = "a multi-language bindings generator for rust (testing helpers)"
documentation = "https://mozilla.github.io/uniffi-rs"
Expand Down
6 changes: 3 additions & 3 deletions uniffi_udl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uniffi_udl"
version = "0.26.1"
version = "0.27.0"
description = "udl parsing for the uniffi project"
documentation = "https://mozilla.github.io/uniffi-rs"
homepage = "https://mozilla.github.io/uniffi-rs"
Expand All @@ -14,5 +14,5 @@ readme = "../README.md"
anyhow = "1"
weedle2 = { version = "5.0.0", path = "../weedle2" }
textwrap = "0.16"
uniffi_meta = { path = "../uniffi_meta", version = "=0.26.1" }
uniffi_testing = { path = "../uniffi_testing", version = "=0.26.1" }
uniffi_meta = { path = "../uniffi_meta", version = "=0.27.0" }
uniffi_testing = { path = "../uniffi_testing", version = "=0.27.0" }

0 comments on commit 6f1f9b7

Please sign in to comment.