Skip to content

Commit

Permalink
chore: release (#2)
Browse files Browse the repository at this point in the history
-   mf1: 0.1.1 -> 0.1.2
-   mf1-macros: 0.1.1 -> 0.1.2
-   mf1-parser: 0.1.1 -> 0.1.2
  • Loading branch information
JadedBlueEyes authored Jul 12, 2024
2 parents 84bf3cf + 850fd5c commit fc6007b
Show file tree
Hide file tree
Showing 9 changed files with 40 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.

10 changes: 10 additions & 0 deletions crates/mf1-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ 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.2] - 2024-07-12

### Documentation

- Add bare-bones README files ([6861793](https://github.com/JadedBlueEyes/messageformat/commit/6861793fe974f384a2136ee1550eba9fbf592796))

### Miscellaneous Tasks

- Specify readme files in Cargo.toml ([21c51b9](https://github.com/JadedBlueEyes/messageformat/commit/21c51b9038d9b74a8cd13b75237f20b1ed11c8c4))

## [0.1.1](https://github.com/JadedBlueEyes/messageformat/compare/mf1-macros-v0.1.0...mf1-macros-v0.1.1) - 2024-07-12

### Other
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.1"
version = "0.1.2"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Macros for the mf1 crate"
Expand All @@ -11,7 +11,7 @@ proc-macro = true

[dependencies]
convert_case = "0.6.0"
mf1-parser = { version = "0.1.1", path = "../mf1-parser" }
mf1-parser = { version = "0.1.2", path = "../mf1-parser" }
proc-macro2 = "1.0.86"
quote = "1.0.36"
serde = { version = "1.0.203", features = ["derive"] }
Expand Down
10 changes: 10 additions & 0 deletions crates/mf1-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ 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.2] - 2024-07-12

### Documentation

- Add bare-bones README files ([6861793](https://github.com/JadedBlueEyes/messageformat/commit/6861793fe974f384a2136ee1550eba9fbf592796))

### Miscellaneous Tasks

- Specify readme files in Cargo.toml ([21c51b9](https://github.com/JadedBlueEyes/messageformat/commit/21c51b9038d9b74a8cd13b75237f20b1ed11c8c4))

## [0.1.1](https://github.com/JadedBlueEyes/messageformat/compare/mf1-parser-v0.1.0...mf1-parser-v0.1.1) - 2024-07-12

### Other
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.1"
version = "0.1.2"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Parse ICU MessageFormat 1 syntax"
Expand Down
10 changes: 10 additions & 0 deletions crates/mf1/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ 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.2] - 2024-07-12

### Documentation

- Add bare-bones README files ([6861793](https://github.com/JadedBlueEyes/messageformat/commit/6861793fe974f384a2136ee1550eba9fbf592796))

### Miscellaneous Tasks

- Specify readme files in Cargo.toml ([21c51b9](https://github.com/JadedBlueEyes/messageformat/commit/21c51b9038d9b74a8cd13b75237f20b1ed11c8c4))

## [0.1.1](https://github.com/JadedBlueEyes/messageformat/compare/mf1-v0.1.0...mf1-v0.1.1) - 2024-07-12

### Other
Expand Down
4 changes: 2 additions & 2 deletions crates/mf1/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "mf1"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Use ICU MessageFormat 1 to internationalise your apps"
readme = "README.md"

[dependencies]

mf1-macros = { path = "../mf1-macros", version = "0.1.1", optional = true}
mf1-macros = { path = "../mf1-macros", version = "0.1.2", 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.1", path = "../../crates/mf1" }
mf1 = { version = "0.1.2", 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.1", path = "../../crates/mf1" }
mf1 = { version = "0.1.2", path = "../../crates/mf1" }

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

0 comments on commit fc6007b

Please sign in to comment.