Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
JadedBlueEyes committed Aug 2, 2024
1 parent 3719e2a commit 2248b1f
Show file tree
Hide file tree
Showing 9 changed files with 35 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.

11 changes: 11 additions & 0 deletions crates/mf1-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.3"
version = "0.1.4"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Macros for the mf1 crate"
Expand All @@ -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"] }
Expand Down
7 changes: 7 additions & 0 deletions crates/mf1-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.3"
version = "0.1.4"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Parse ICU MessageFormat 1 syntax"
Expand Down
7 changes: 7 additions & 0 deletions crates/mf1/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.3"
version = "0.1.4"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Use ICU MessageFormat 1 to internationalise your apps"
Expand All @@ -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]

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.3", path = "../../crates/mf1" }
mf1 = { version = "0.1.4", 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.3", path = "../../crates/mf1" }
mf1 = { version = "0.1.4", path = "../../crates/mf1" }

[package.metadata.mf1]
locales = ["en", "es"]

0 comments on commit 2248b1f

Please sign in to comment.