From 3aab4475fed5c45ac4a8059ec513a315838ef6f8 Mon Sep 17 00:00:00 2001 From: Jade Ellis Date: Mon, 22 Jul 2024 16:36:55 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 6 +++--- crates/mf1-macros/CHANGELOG.md | 19 +++++++++++++++++++ crates/mf1-macros/Cargo.toml | 4 ++-- crates/mf1-parser/CHANGELOG.md | 11 +++++++++++ crates/mf1-parser/Cargo.toml | 2 +- crates/mf1/CHANGELOG.md | 11 +++++++++++ crates/mf1/Cargo.toml | 4 ++-- examples/basic/Cargo.toml | 2 +- examples/kitchen-sink/Cargo.toml | 2 +- 9 files changed, 51 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d783273..d3c4883 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -264,14 +264,14 @@ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" [[package]] name = "mf1" -version = "0.1.2" +version = "0.1.3" dependencies = [ "mf1-macros", ] [[package]] name = "mf1-macros" -version = "0.1.2" +version = "0.1.3" dependencies = [ "convert_case", "mf1-parser", @@ -286,7 +286,7 @@ dependencies = [ [[package]] name = "mf1-parser" -version = "0.1.2" +version = "0.1.3" dependencies = [ "icu_plurals", "logos", diff --git a/crates/mf1-macros/CHANGELOG.md b/crates/mf1-macros/CHANGELOG.md index 01cf8ba..acaf66e 100644 --- a/crates/mf1-macros/CHANGELOG.md +++ b/crates/mf1-macros/CHANGELOG.md @@ -4,6 +4,25 @@ 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.3](https://github.com/JadedBlueEyes/messageformat/compare/mf1-macros-v0.1.2...mf1-macros-v0.1.3) - 2024-07-22 + +### Documentation + +- Add more badges to README files in [`77c587b`](https://github.com/JadedBlueEyes/messageformat/commit/77c587b5222b26032dfa40eb8777cf0af3f9a32f) + +### Features + +- Add support for subkeys in [`eb65424`](https://github.com/JadedBlueEyes/messageformat/commit/eb65424120fd80964057950b95975546265962f6) + +### Miscellaneous Tasks + +- Add `repository` to Cargo.toml files in [`f08a90a`](https://github.com/JadedBlueEyes/messageformat/commit/f08a90a8f25cb89d5c1996d992fabec191eda186) + +### Refactor + +- Start implementing subkeys in [`a040e7e`](https://github.com/JadedBlueEyes/messageformat/commit/a040e7ea88ce34d328b1f3d82ef488c8c8738ec9) +[0.1.3]: https://github.com/JadedBlueEyes/messageformat/compare/0.1.2..0.1.3 + ## [0.1.2] - 2024-07-12 ### Documentation diff --git a/crates/mf1-macros/Cargo.toml b/crates/mf1-macros/Cargo.toml index dd41c36..d56f4d3 100644 --- a/crates/mf1-macros/Cargo.toml +++ b/crates/mf1-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mf1-macros" -version = "0.1.2" +version = "0.1.3" 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.2", path = "../mf1-parser" } +mf1-parser = { version = "0.1.3", 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 6265f17..5cb3e3c 100644 --- a/crates/mf1-parser/CHANGELOG.md +++ b/crates/mf1-parser/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.3](https://github.com/JadedBlueEyes/messageformat/compare/mf1-parser-v0.1.2...mf1-parser-v0.1.3) - 2024-07-22 + +### Documentation + +- Add more badges to README files in [`77c587b`](https://github.com/JadedBlueEyes/messageformat/commit/77c587b5222b26032dfa40eb8777cf0af3f9a32f) + +### Miscellaneous Tasks + +- Add `repository` to Cargo.toml files in [`f08a90a`](https://github.com/JadedBlueEyes/messageformat/commit/f08a90a8f25cb89d5c1996d992fabec191eda186) +[0.1.3]: https://github.com/JadedBlueEyes/messageformat/compare/0.1.2..0.1.3 + ## [0.1.2] - 2024-07-12 ### Documentation diff --git a/crates/mf1-parser/Cargo.toml b/crates/mf1-parser/Cargo.toml index f924a6f..507c688 100644 --- a/crates/mf1-parser/Cargo.toml +++ b/crates/mf1-parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mf1-parser" -version = "0.1.2" +version = "0.1.3" 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 206ba56..635be15 100644 --- a/crates/mf1/CHANGELOG.md +++ b/crates/mf1/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.3](https://github.com/JadedBlueEyes/messageformat/compare/mf1-v0.1.2...mf1-v0.1.3) - 2024-07-22 + +### Documentation + +- Add more badges to README files in [`77c587b`](https://github.com/JadedBlueEyes/messageformat/commit/77c587b5222b26032dfa40eb8777cf0af3f9a32f) + +### Miscellaneous Tasks + +- Add `repository` to Cargo.toml files in [`f08a90a`](https://github.com/JadedBlueEyes/messageformat/commit/f08a90a8f25cb89d5c1996d992fabec191eda186) +[0.1.3]: https://github.com/JadedBlueEyes/messageformat/compare/0.1.2..0.1.3 + ## [0.1.2] - 2024-07-12 ### Documentation diff --git a/crates/mf1/Cargo.toml b/crates/mf1/Cargo.toml index 0292e95..1a6a93c 100644 --- a/crates/mf1/Cargo.toml +++ b/crates/mf1/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mf1" -version = "0.1.2" +version = "0.1.3" 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.2", optional = true} +mf1-macros = { path = "../mf1-macros", version = "0.1.3", optional = true} [features] diff --git a/examples/basic/Cargo.toml b/examples/basic/Cargo.toml index 15f516d..c6927e4 100644 --- a/examples/basic/Cargo.toml +++ b/examples/basic/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" publish = false [dependencies] -mf1 = { version = "0.1.2", path = "../../crates/mf1" } +mf1 = { version = "0.1.3", path = "../../crates/mf1" } [package.metadata.mf1] locales = ["en", "es"] diff --git a/examples/kitchen-sink/Cargo.toml b/examples/kitchen-sink/Cargo.toml index efb3725..78fd19f 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.2", path = "../../crates/mf1" } +mf1 = { version = "0.1.3", path = "../../crates/mf1" } [package.metadata.mf1] locales = ["en", "es"]