Skip to content

Commit

Permalink
Fix icu_capi features, bump to 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Manishearth committed Apr 18, 2023
1 parent 6af64d2 commit eec858b
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 18 deletions.
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`
- Fixed issue with `buffer_provider` feature accidentally pulling in extra crates

## 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

0 comments on commit eec858b

Please sign in to comment.