diff --git a/Cargo.lock b/Cargo.lock index f413ad0..4da5060 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -264,14 +264,14 @@ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" [[package]] name = "mf1" -version = "0.1.3" +version = "0.1.4" dependencies = [ "mf1-macros", ] [[package]] name = "mf1-macros" -version = "0.1.3" +version = "0.1.4" dependencies = [ "convert_case", "mf1-parser", @@ -286,7 +286,7 @@ dependencies = [ [[package]] name = "mf1-parser" -version = "0.1.3" +version = "0.1.4" dependencies = [ "icu_plurals", "logos", diff --git a/crates/mf1-macros/CHANGELOG.md b/crates/mf1-macros/CHANGELOG.md index fb28860..d9dbb5b 100644 --- a/crates/mf1-macros/CHANGELOG.md +++ b/crates/mf1-macros/CHANGELOG.md @@ -4,6 +4,17 @@ 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.4](https://github.com/JadedBlueEyes/messageformat/compare/mf1-macros-v0.1.3...mf1-macros-v0.1.4) - 2024-08-02 + +### Documentation + +- Remove duplicate link refs in [`f754fc8`](https://github.com/JadedBlueEyes/messageformat/commit/f754fc8dd33df5b415a7f8af089be0025390fd3c) +- Clean up changelogs in [`110b4ac`](https://github.com/JadedBlueEyes/messageformat/commit/110b4ac49c8fd73aeb9e119950e44c3edb2c00a4) + +### Features + +- Add a constant listing all available locales in [`24d5c7e`](https://github.com/JadedBlueEyes/messageformat/commit/24d5c7e861196b0b0d4cb53c70897e8510bf199f) + ## [0.1.3](https://github.com/JadedBlueEyes/messageformat/compare/mf1-macros-v0.1.2...mf1-macros-v0.1.3) - 2024-07-22 ### Documentation diff --git a/crates/mf1-macros/Cargo.toml b/crates/mf1-macros/Cargo.toml index d56f4d3..8b9ed68 100644 --- a/crates/mf1-macros/Cargo.toml +++ b/crates/mf1-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mf1-macros" -version = "0.1.3" +version = "0.1.4" edition = "2021" license = "MIT OR Apache-2.0" description = "Macros for the mf1 crate" @@ -13,7 +13,7 @@ proc-macro = true [dependencies] convert_case = "0.6.0" -mf1-parser = { version = "0.1.3", path = "../mf1-parser" } +mf1-parser = { version = "0.1.4", 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 e39eb61..a7fa7b8 100644 --- a/crates/mf1-parser/CHANGELOG.md +++ b/crates/mf1-parser/CHANGELOG.md @@ -4,6 +4,13 @@ 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.4](https://github.com/JadedBlueEyes/messageformat/compare/mf1-parser-v0.1.3...mf1-parser-v0.1.4) - 2024-08-02 + +### Documentation + +- Remove duplicate link refs in [`f754fc8`](https://github.com/JadedBlueEyes/messageformat/commit/f754fc8dd33df5b415a7f8af089be0025390fd3c) +- Clean up changelogs in [`110b4ac`](https://github.com/JadedBlueEyes/messageformat/commit/110b4ac49c8fd73aeb9e119950e44c3edb2c00a4) + ## [0.1.3](https://github.com/JadedBlueEyes/messageformat/compare/mf1-parser-v0.1.2...mf1-parser-v0.1.3) - 2024-07-22 ### Documentation diff --git a/crates/mf1-parser/Cargo.toml b/crates/mf1-parser/Cargo.toml index 507c688..a1f57d7 100644 --- a/crates/mf1-parser/Cargo.toml +++ b/crates/mf1-parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mf1-parser" -version = "0.1.3" +version = "0.1.4" 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 8649fb3..77958f2 100644 --- a/crates/mf1/CHANGELOG.md +++ b/crates/mf1/CHANGELOG.md @@ -4,6 +4,13 @@ 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.4](https://github.com/JadedBlueEyes/messageformat/compare/mf1-v0.1.3...mf1-v0.1.4) - 2024-08-02 + +### Documentation + +- Remove duplicate link refs in [`f754fc8`](https://github.com/JadedBlueEyes/messageformat/commit/f754fc8dd33df5b415a7f8af089be0025390fd3c) +- Clean up changelogs in [`110b4ac`](https://github.com/JadedBlueEyes/messageformat/commit/110b4ac49c8fd73aeb9e119950e44c3edb2c00a4) + ## [0.1.3](https://github.com/JadedBlueEyes/messageformat/compare/mf1-v0.1.2...mf1-v0.1.3) - 2024-07-22 ### Documentation diff --git a/crates/mf1/Cargo.toml b/crates/mf1/Cargo.toml index 1a6a93c..69f19d7 100644 --- a/crates/mf1/Cargo.toml +++ b/crates/mf1/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mf1" -version = "0.1.3" +version = "0.1.4" edition = "2021" license = "MIT OR Apache-2.0" description = "Use ICU MessageFormat 1 to internationalise your apps" @@ -10,7 +10,7 @@ homepage = "https://github.com/JadedBlueEyes/messageformat/tree/main/crates/mf1" [dependencies] -mf1-macros = { path = "../mf1-macros", version = "0.1.3", optional = true} +mf1-macros = { path = "../mf1-macros", version = "0.1.4", optional = true} [features] diff --git a/examples/basic/Cargo.toml b/examples/basic/Cargo.toml index c6927e4..fec0667 100644 --- a/examples/basic/Cargo.toml +++ b/examples/basic/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" publish = false [dependencies] -mf1 = { version = "0.1.3", path = "../../crates/mf1" } +mf1 = { version = "0.1.4", path = "../../crates/mf1" } [package.metadata.mf1] locales = ["en", "es"] diff --git a/examples/kitchen-sink/Cargo.toml b/examples/kitchen-sink/Cargo.toml index 78fd19f..0239092 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.3", path = "../../crates/mf1" } +mf1 = { version = "0.1.4", path = "../../crates/mf1" } [package.metadata.mf1] locales = ["en", "es"]