Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix icu_capi features, bump to 1.2.1 #3344

Merged
merged 8 commits into from
Apr 18, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Note: A subset of crates received patch releases in the 1.2 stream.
- Fixed [#3332](https://github.com/unicode-org/icu4x/issues/3332), missing `+?Sized` bound
- `icu_segmenter`
- Fixed [#3341](https://github.com/unicode-org/icu4x/pull/3341), incorrect results on some strings with mixed scripts
- `icu_capi`
Manishearth marked this conversation as resolved.
Show resolved Hide resolved
- Fixed issue with `buffer_provider` feature accidentally pulling in extra crates
Manishearth marked this conversation as resolved.
Show resolved Hide resolved

## icu4x 1.2 (Apr 13, 2023)

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

22 changes: 11 additions & 11 deletions ffi/diplomat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[package]
name = "icu_capi"
description = "C interface to ICU4X"
version = "1.2.0"
version = "1.2.1"
authors = ["The ICU4X Project Developers"]
edition = "2021"
resolver = "2"
Expand Down Expand Up @@ -41,19 +41,19 @@ any_provider = []
buffer_provider = [
"dep:icu_provider_blob",
"dep:serde",
"icu_collator/serde",
"icu_datetime/serde",
"icu_decimal/serde",
"icu_displaynames/serde",
"icu_list/serde",
"icu_locid_transform/serde",
"icu_collator?/serde",
"icu_datetime?/serde",
"icu_decimal?/serde",
"icu_displaynames?/serde",
"icu_list?/serde",
"icu_locid_transform?/serde",
"icu_locid/serde",
"icu_normalizer/serde",
"icu_plurals/serde",
"icu_properties/serde",
"icu_normalizer?/serde",
"icu_plurals?/serde",
"icu_properties?/serde",
"icu_provider/serde",
"icu_provider_adapters/serde",
"icu_segmenter/serde",
"icu_segmenter?/serde",
"icu_testdata?/buffer",
]
provider_fs = ["dep:icu_provider_fs", "buffer_provider"]
Expand Down
2 changes: 1 addition & 1 deletion ffi/gn/Cargo.lock

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

10 changes: 5 additions & 5 deletions ffi/gn/icu4x/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ group("icu") {
}

group("icu_capi") {
public_deps = [ ":icu_capi-v1_2_0" ]
public_deps = [ ":icu_capi-v1_2_1" ]
}

group("icu_provider") {
Expand Down Expand Up @@ -227,10 +227,10 @@ rust_library("icu_calendar-v1_2_0") {
visibility = [ ":*" ]
}

rust_library("icu_capi-v1_2_0") {
rust_library("icu_capi-v1_2_1") {
crate_name = "icu_capi"
crate_root = "//ffi/diplomat/src/lib.rs"
output_name = "icu_capi-b51c929cdeb02cfc"
output_name = "icu_capi-21b7630bfb7b7ffe"

deps = []
deps += [ ":diplomat-v0_5_1($host_toolchain)" ]
Expand Down Expand Up @@ -265,8 +265,8 @@ rust_library("icu_capi-v1_2_0") {
rustflags = [
"--cap-lints=allow",
"--edition=2021",
"-Cmetadata=b51c929cdeb02cfc",
"-Cextra-filename=-b51c929cdeb02cfc",
"-Cmetadata=21b7630bfb7b7ffe",
"-Cextra-filename=-21b7630bfb7b7ffe",
"--cfg=feature=\"any_provider\"",
"--cfg=feature=\"default_components\"",
"--cfg=feature=\"icu_calendar\"",
Expand Down