From 783d70660c29b30bf15009692a03546d08c13bd4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 13 Sep 2024 01:06:28 +0000 Subject: [PATCH 1/2] chore(deps): lock file maintenance --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f36b041..e56387a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -470,9 +470,9 @@ dependencies = [ [[package]] name = "unicode-ident" -version = "1.0.12" +version = "1.0.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" +checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe" [[package]] name = "unicode-segmentation" From 2ad3e9b1cc0288250fe5c8ac60fba6c151d3cabd Mon Sep 17 00:00:00 2001 From: Jade Ellis Date: Fri, 13 Sep 2024 02:10:08 +0100 Subject: [PATCH 2/2] chore: release --- Cargo.lock | 6 +++--- crates/mf1-macros/CHANGELOG.md | 8 ++++++++ crates/mf1-macros/Cargo.toml | 4 ++-- crates/mf1-parser/CHANGELOG.md | 8 ++++++++ crates/mf1-parser/Cargo.toml | 2 +- crates/mf1/CHANGELOG.md | 8 ++++++++ crates/mf1/Cargo.toml | 4 ++-- examples/basic/Cargo.toml | 2 +- examples/kitchen-sink/Cargo.toml | 2 +- 9 files changed, 34 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e56387a..a6e02b4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -264,14 +264,14 @@ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" [[package]] name = "mf1" -version = "0.1.5" +version = "0.1.6" dependencies = [ "mf1-macros", ] [[package]] name = "mf1-macros" -version = "0.1.5" +version = "0.1.6" dependencies = [ "convert_case", "mf1-parser", @@ -286,7 +286,7 @@ dependencies = [ [[package]] name = "mf1-parser" -version = "0.1.4" +version = "0.1.5" dependencies = [ "icu_plurals", "logos", diff --git a/crates/mf1-macros/CHANGELOG.md b/crates/mf1-macros/CHANGELOG.md index cf8dd2d..dc07a67 100644 --- a/crates/mf1-macros/CHANGELOG.md +++ b/crates/mf1-macros/CHANGELOG.md @@ -6,6 +6,14 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm +## [0.1.6](https://github.com/JadedBlueEyes/messageformat/compare/mf1-macros-v0.1.5...mf1-macros-v0.1.6) - 2024-09-13 + +### Miscellaneous Tasks + +- Enrich Cargo metadata in [`25fe330`](https://github.com/JadedBlueEyes/messageformat/commit/25fe330d5351a1dc9549af51abf49afcf85199fb) + + + ## [0.1.5](https://github.com/JadedBlueEyes/messageformat/compare/mf1-macros-v0.1.4...mf1-macros-v0.1.5) - 2024-08-22 ### Bug Fixes diff --git a/crates/mf1-macros/Cargo.toml b/crates/mf1-macros/Cargo.toml index 18892d5..5dc1f34 100644 --- a/crates/mf1-macros/Cargo.toml +++ b/crates/mf1-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mf1-macros" -version = "0.1.5" +version = "0.1.6" edition = "2021" license = "MIT OR Apache-2.0" description = "Macros for the mf1 crate" @@ -14,7 +14,7 @@ proc-macro = true [dependencies] convert_case = "0.6.0" -mf1-parser = { version = "0.1.4", path = "../mf1-parser" } +mf1-parser = { version = "0.1.5", path = "../mf1-parser" } proc-macro2 = "1.0.86" quote = "1.0.36" serde = { version = "1.0.203", features = ["derive"] } diff --git a/crates/mf1-parser/CHANGELOG.md b/crates/mf1-parser/CHANGELOG.md index a7fa7b8..95306f4 100644 --- a/crates/mf1-parser/CHANGELOG.md +++ b/crates/mf1-parser/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + + +## [0.1.5](https://github.com/JadedBlueEyes/messageformat/compare/mf1-parser-v0.1.4...mf1-parser-v0.1.5) - 2024-09-13 + +### Miscellaneous Tasks + +- Enrich Cargo metadata in [`25fe330`](https://github.com/JadedBlueEyes/messageformat/commit/25fe330d5351a1dc9549af51abf49afcf85199fb) + ## [0.1.4](https://github.com/JadedBlueEyes/messageformat/compare/mf1-parser-v0.1.3...mf1-parser-v0.1.4) - 2024-08-02 ### Documentation diff --git a/crates/mf1-parser/Cargo.toml b/crates/mf1-parser/Cargo.toml index 5b29704..abec159 100644 --- a/crates/mf1-parser/Cargo.toml +++ b/crates/mf1-parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mf1-parser" -version = "0.1.4" +version = "0.1.5" edition = "2021" license = "MIT OR Apache-2.0" description = "Parse ICU MessageFormat 1 syntax" diff --git a/crates/mf1/CHANGELOG.md b/crates/mf1/CHANGELOG.md index 13f4da6..e605609 100644 --- a/crates/mf1/CHANGELOG.md +++ b/crates/mf1/CHANGELOG.md @@ -6,6 +6,14 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm +## [0.1.6](https://github.com/JadedBlueEyes/messageformat/compare/mf1-v0.1.5...mf1-v0.1.6) - 2024-09-13 + +### Miscellaneous Tasks + +- Enrich Cargo metadata in [`25fe330`](https://github.com/JadedBlueEyes/messageformat/commit/25fe330d5351a1dc9549af51abf49afcf85199fb) + + + ## [0.1.5](https://github.com/JadedBlueEyes/messageformat/compare/mf1-v0.1.4...mf1-v0.1.5) - 2024-08-22 ### Miscellaneous Tasks diff --git a/crates/mf1/Cargo.toml b/crates/mf1/Cargo.toml index f6144b7..a805cd0 100644 --- a/crates/mf1/Cargo.toml +++ b/crates/mf1/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mf1" -version = "0.1.5" +version = "0.1.6" edition = "2021" license = "MIT OR Apache-2.0" description = "Use ICU MessageFormat 1 to internationalise your apps" @@ -13,7 +13,7 @@ homepage = "https://github.com/JadedBlueEyes/messageformat/tree/main/crates/mf1" [dependencies] -mf1-macros = { path = "../mf1-macros", version = "0.1.5", optional = true} +mf1-macros = { path = "../mf1-macros", version = "0.1.6", optional = true} [features] diff --git a/examples/basic/Cargo.toml b/examples/basic/Cargo.toml index bb9fe49..efb01af 100644 --- a/examples/basic/Cargo.toml +++ b/examples/basic/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" publish = false [dependencies] -mf1 = { version = "0.1.5", path = "../../crates/mf1" } +mf1 = { version = "0.1.6", path = "../../crates/mf1" } [package.metadata.mf1] locales = ["en", "es"] diff --git a/examples/kitchen-sink/Cargo.toml b/examples/kitchen-sink/Cargo.toml index f13a0cd..42a864c 100644 --- a/examples/kitchen-sink/Cargo.toml +++ b/examples/kitchen-sink/Cargo.toml @@ -7,7 +7,7 @@ publish = false [dependencies] expect-test = "1.5.0" -mf1 = { version = "0.1.5", path = "../../crates/mf1" } +mf1 = { version = "0.1.6", path = "../../crates/mf1" } [package.metadata.mf1] locales = ["en", "es"]