Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
JadedBlueEyes committed Sep 13, 2024
1 parent 783d706 commit 2ad3e9b
Show file tree
Hide file tree
Showing 9 changed files with 34 additions and 10 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

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

8 changes: 8 additions & 0 deletions crates/mf1-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions crates/mf1-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"] }
Expand Down
8 changes: 8 additions & 0 deletions crates/mf1-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/mf1-parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
8 changes: 8 additions & 0 deletions crates/mf1/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions crates/mf1/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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]

Expand Down
2 changes: 1 addition & 1 deletion examples/basic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
2 changes: 1 addition & 1 deletion examples/kitchen-sink/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

0 comments on commit 2ad3e9b

Please sign in to comment.