Skip to content

Commit

Permalink
Merge pull request #1617 from mozilla/release-v0.24.x
Browse files Browse the repository at this point in the history
  • Loading branch information
badboy committed Jun 21, 2023
2 parents 718d4e9 + 013637e commit 9e9bc43
Show file tree
Hide file tree
Showing 11 changed files with 27 additions and 22 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@

## [[UnreleasedUniFFIVersion]] (backend crates: [[UnreleasedBackendVersion]]) - (_[[ReleaseDate]]_)

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

## v0.24.0 (backend crates: v0.24.0) - (_2023-06-21_)

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

### ⚠️ Breaking Changes ⚠️
- ABI: Implemented a new callback-interface ABI that significantly improves performance on Python and Kotlin.
Expand Down
10 changes: 5 additions & 5 deletions uniffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ repository = "https://github.com/mozilla/uniffi-rs"
# Incrementing the minor version here means a breaking change to consumers.
# * See `docs/uniffi-versioning.md` for guidance on when to increment this
# * Make sure to also update `uniffi_bindgen::UNIFFI_CONTRACT_VERSION"
version = "0.23.0"
version = "0.24.0"
authors = ["Firefox Sync Team <sync-team@mozilla.com>"]
license = "MPL-2.0"
edition = "2021"
keywords = ["ffi", "bindgen"]

[dependencies]
uniffi_bindgen = { path = "../uniffi_bindgen", version = "=0.23.0", optional = true }
uniffi_build = { path = "../uniffi_build", version = "=0.23.0", optional = true }
uniffi_core = { path = "../uniffi_core", version = "=0.23.0" }
uniffi_macros = { path = "../uniffi_macros", version = "=0.23.0" }
uniffi_bindgen = { path = "../uniffi_bindgen", version = "=0.24.0", optional = true }
uniffi_build = { path = "../uniffi_build", version = "=0.24.0", optional = true }
uniffi_core = { path = "../uniffi_core", version = "=0.24.0" }
uniffi_macros = { path = "../uniffi_macros", version = "=0.24.0" }
anyhow = "1"
camino = { version = "1.0.8", optional = true }
clap = { version = "4", features = ["cargo", "std", "derive"], optional = true }
Expand Down
3 changes: 2 additions & 1 deletion uniffi/release.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ tag = true
pre-release-replacements = [
{file="../CHANGELOG.md", search="\\[\\[UnreleasedUniFFIVersion\\]\\]", replace="v{{version}}", exactly=2},
{file="../CHANGELOG.md", search="\\.\\.\\.HEAD\\)", replace="...{{tag_name}})", exactly=1},
{file="../CHANGELOG.md", search="\\[\\[NextUnreleasedUniFFIVersion\\]\\]", replace="[[UnreleasedUniFFIVersion]]", exactly=1},
{file="../CHANGELOG.md", search="\\[\\[NextUnreleasedUniFFIVersion\\]\\]", replace="[[UnreleasedUniFFIVersion]]", exactly=2},
{file="../CHANGELOG.md", search="\\.\\.\\.NEXT_HEAD\\)", replace="...HEAD)", exactly=1},
]
6 changes: 3 additions & 3 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.23.0"
version = "0.24.0"
authors = ["Firefox Sync Team <sync-team@mozilla.com>"]
description = "a multi-language bindings generator for rust (codegen and cli tooling)"
documentation = "https://mozilla.github.io/uniffi-rs"
Expand All @@ -25,6 +25,6 @@ serde = "1"
serde_json = "1.0.80"
toml = "0.5"
weedle2 = { version = "4.0.0", path = "../weedle2" }
uniffi_meta = { path = "../uniffi_meta", version = "=0.23.0" }
uniffi_testing = { path = "../uniffi_testing", version = "=0.23.0" }
uniffi_meta = { path = "../uniffi_meta", version = "=0.24.0" }
uniffi_testing = { path = "../uniffi_testing", version = "=0.24.0" }
clap = { version = "4", default-features = false, features = ["std", "derive"], optional = true }
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.23.0"
version = "0.24.0"
authors = ["Firefox Sync Team <sync-team@mozilla.com>"]
description = "a multi-language bindings generator for rust (build script helpers)"
documentation = "https://mozilla.github.io/uniffi-rs"
Expand All @@ -13,7 +13,7 @@ keywords = ["ffi", "bindgen"]
[dependencies]
anyhow = "1"
camino = "1.0.8"
uniffi_bindgen = { path = "../uniffi_bindgen", default-features = false, version = "=0.23.0" }
uniffi_bindgen = { path = "../uniffi_bindgen", default-features = false, version = "=0.24.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.23.0"
version = "0.24.0"
authors = ["Firefox Sync Team <sync-team@mozilla.com>"]
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.23.0"
version = "0.24.0"
authors = ["Firefox Sync Team <sync-team@mozilla.com>"]
license = "MPL-2.0"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion uniffi_core/release.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ tag = false
pre-release-replacements = [
{file="../CHANGELOG.md", search="\\[\\[UnreleasedBackendVersion\\]\\]", replace="v{{version}}", exactly=1},
{file="../CHANGELOG.md", search="\\[\\[ReleaseDate\\]\\]", replace="{{date}}", exactly=1},
{file="../CHANGELOG.md", search="<!-- next-header -->", replace="<!-- next-header -->\n\n## [[NextUnreleasedUniFFIVersion]] (backend crates: [[UnreleasedBackendVersion]]) - (_[[ReleaseDate]]_)\n\n[All changes in [[UnreleasedVersion]]](https://github.com/mozilla/uniffi-rs/compare/v{{version}}...HEAD).", exactly=1},
{file="../CHANGELOG.md", search="<!-- next-header -->", replace="<!-- next-header -->\n\n## [[NextUnreleasedUniFFIVersion]] (backend crates: [[UnreleasedBackendVersion]]) - (_[[ReleaseDate]]_)\n\n[All changes in [[NextUnreleasedUniFFIVersion]]](https://github.com/mozilla/uniffi-rs/compare/v{{version}}...NEXT_HEAD).", exactly=1},
]
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.23.0"
version = "0.24.0"
authors = ["Firefox Sync Team <sync-team@mozilla.com>"]
description = "a multi-language bindings generator for rust (convenience macros)"
documentation = "https://mozilla.github.io/uniffi-rs"
Expand All @@ -23,8 +23,8 @@ quote = "1.0"
serde = "1.0.136"
syn = { version = "2.0", features = ["full", "visit-mut"] }
toml = "0.5.9"
uniffi_build = { path = "../uniffi_build", version = "=0.23.0" }
uniffi_meta = { path = "../uniffi_meta", version = "=0.23.0" }
uniffi_build = { path = "../uniffi_build", version = "=0.24.0" }
uniffi_meta = { path = "../uniffi_meta", version = "=0.24.0" }

[features]
default = []
Expand Down
6 changes: 3 additions & 3 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.23.0"
version = "0.24.0"
edition = "2021"
description = "uniffi_meta"
homepage = "https://mozilla.github.io/uniffi-rs"
Expand All @@ -13,5 +13,5 @@ anyhow = "1"
bytes = "1.3"
serde = { version = "1.0.136", features = ["derive"] }
siphasher = "0.3"
uniffi_checksum_derive = { version = "0.23.0", path = "../uniffi_checksum_derive" }
uniffi_core = { path = "../uniffi_core", version = "=0.23.0" }
uniffi_checksum_derive = { version = "0.24.0", path = "../uniffi_checksum_derive" }
uniffi_core = { path = "../uniffi_core", version = "=0.24.0" }
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.23.0"
version = "0.24.0"
authors = ["Firefox Sync Team <sync-team@mozilla.com>"]
description = "a multi-language bindings generator for rust (testing helpers)"
documentation = "https://mozilla.github.io/uniffi-rs"
Expand Down

0 comments on commit 9e9bc43

Please sign in to comment.