Skip to content

Commit

Permalink
Version set to 0.6.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
rizzen-yazston committed Jul 4, 2023
1 parent a17f15b commit ed69819
Show file tree
Hide file tree
Showing 16 changed files with 46 additions and 46 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
= Changelog
Rizzen Yazston

== i18n 0.6.0 (2023-07-0?)
== i18n 0.6.0 (2023-07-04)

WARNING: This update has API breaking changes for some `i18n` crates.

Expand Down
2 changes: 1 addition & 1 deletion README.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ For most use cases, just the use of `i18n-rizzen-yazston` crate will be sufficie

```
[dependencies]
i18n-rizzen-yazston = "0.5.0"
i18n-rizzen-yazston = "0.6.0"
```

=== Examples
Expand Down
16 changes: 8 additions & 8 deletions crates/i18n/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[package]
# suffix '-rizzen-yazston' appended to prevent package name clashes on 'crates.io'
name = "i18n-rizzen-yazston"
version = "0.5.0"
version = "0.6.0"
authors = ["Rizzen Yazston"]
edition = "2021"
rust-version = "1.70.0"
Expand All @@ -18,13 +18,13 @@ keywords = ["internationalization", "localization", "icu4x"]
categories = ["internationalization", "localization", "rust-pattern"]

[dependencies]
i18n_icu-rizzen-yazston = { version = "0.5.0", path = "../icu" }
i18n_lexer-rizzen-yazston = { version = "0.5.0", path = "../lexer" }
i18n_message-rizzen-yazston = { version = "0.5.0", path = "../message" }
i18n_pattern-rizzen-yazston = { version = "0.5.0", path = "../pattern" }
i18n_provider-rizzen-yazston = { version = "0.5.0", path = "../provider/core" }
i18n_provider_sqlite3-rizzen-yazston = { version = "0.5.0", path = "../provider/sqlite3" }
i18n_utility-rizzen-yazston = { version = "0.5.0", path = "../utility" }
i18n_icu-rizzen-yazston = { version = "0.6.0", path = "../icu" }
i18n_lexer-rizzen-yazston = { version = "0.6.0", path = "../lexer" }
i18n_message-rizzen-yazston = { version = "0.6.0", path = "../message" }
i18n_pattern-rizzen-yazston = { version = "0.6.0", path = "../pattern" }
i18n_provider-rizzen-yazston = { version = "0.6.0", path = "../provider/core" }
i18n_provider_sqlite3-rizzen-yazston = { version = "0.6.0", path = "../provider/sqlite3" }
i18n_utility-rizzen-yazston = { version = "0.6.0", path = "../utility" }

[lib]
name = "i18n"
2 changes: 1 addition & 1 deletion crates/i18n/README.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ For most use cases, just the use of `i18n-rizzen-yazston` crate will be sufficie

```
[dependencies]
i18n-rizzen-yazston = "0.5.0"
i18n-rizzen-yazston = "0.6.0"
```

=== Examples
Expand Down
2 changes: 1 addition & 1 deletion crates/icu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[package]
# suffix '-rizzen-yazston' appended to prevent package name clashes on 'crates.io'
name = "i18n_icu-rizzen-yazston"
version = "0.5.0"
version = "0.6.0"
authors = ["Rizzen Yazston"]
edition = "2021"
rust-version = "1.70.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/lexer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[package]
# suffix '-rizzen-yazston' appended to prevent package name clashes on 'crates.io'
name = "i18n_lexer-rizzen-yazston"
version = "0.5.0"
version = "0.6.0"
authors = ["Rizzen Yazston"]
edition = "2021"
rust-version = "1.70.0"
Expand All @@ -18,7 +18,7 @@ keywords = ["internationalization", "localization", "icu4x"]
categories = ["internationalization", "localization", "rust-pattern"]

[dependencies]
i18n_icu-rizzen-yazston = { version = "0.5.0", path = "../icu" }
i18n_icu-rizzen-yazston = { version = "0.6.0", path = "../icu" }
icu_provider = "1.2.0"
icu_properties = "1.2.0"
icu_segmenter = "1.2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/lexer/README.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Stefano Angeleri for advice on various design aspects of implementing the compon

```
[dependencies]
i18n_icu-rizzen-yazston = "0.5.0"
i18n_icu-rizzen-yazston = "0.6.0"
icu_provider = "1.2.0"

# These are required for the DataProvider.
Expand Down
14 changes: 7 additions & 7 deletions crates/message/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[package]
# suffix '-rizzen-yazston' appended to prevent package name clashes on 'crates.io'
name = "i18n_message-rizzen-yazston"
version = "0.0.0"
version = "0.6.0"
authors = ["Rizzen Yazston"]
edition = "2021"
rust-version = "1.70.0"
Expand All @@ -18,12 +18,12 @@ keywords = ["internationalization", "localization", "icu4x"]
categories = ["internationalization", "localization", "rust-pattern"]

[dependencies]
i18n_icu-rizzen-yazston = { version = "0.5.0", path = "../icu" }
i18n_lexer-rizzen-yazston = { version = "0.5.0", path = "../lexer" } # Needed for Token, TokenType
i18n_pattern-rizzen-yazston = { version = "0.5.0", path = "../pattern" }
i18n_provider-rizzen-yazston = { version = "0.5.0", path = "../provider/core" }
i18n_provider_sqlite3-rizzen-yazston = { version = "0.5.0", path = "../provider/sqlite3" }
i18n_utility-rizzen-yazston = { version = "0.5.0", path = "../utility" }
i18n_icu-rizzen-yazston = { version = "0.6.0", path = "../icu" }
i18n_lexer-rizzen-yazston = { version = "0.6.0", path = "../lexer" } # Needed for Token, TokenType
i18n_pattern-rizzen-yazston = { version = "0.6.0", path = "../pattern" }
i18n_provider-rizzen-yazston = { version = "0.6.0", path = "../provider/core" }
i18n_provider_sqlite3-rizzen-yazston = { version = "0.6.0", path = "../provider/sqlite3" }
i18n_utility-rizzen-yazston = { version = "0.6.0", path = "../utility" }
tree-rizzen-yazston = "0.4.0"
icu_provider = "1.2.0"
icu_properties = "1.2.0"
Expand Down
14 changes: 7 additions & 7 deletions crates/message/README.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ Stefano Angeleri for advice on various design aspects of implementing the compon

```
[dependencies]
i18n_message-rizzen-yazston = "0.5.0"
i18n_icu-rizzen-yazston = "0.5.0"
i18n_lexer-rizzen-yazston = "0.5.0" # Needed for Token, TokenType
i18n_pattern-rizzen-yazston = "0.5.0"
i18n_provider-rizzen-yazston = "0.5.0"
i18n_provider_sqlite3-rizzen-yazston = "0.5.0"
i18n_utility-rizzen-yazston = "0.5.0"
i18n_message-rizzen-yazston = "0.6.0"
i18n_icu-rizzen-yazston = "0.6.0"
i18n_lexer-rizzen-yazston = "0.6.0" # Needed for Token, TokenType
i18n_pattern-rizzen-yazston = "0.6.0"
i18n_provider-rizzen-yazston = "0.6.0"
i18n_provider_sqlite3-rizzen-yazston = "0.6.0"
i18n_utility-rizzen-yazston = "0.6.0"
tree-rizzen-yazston = "0.4.0"
icu_provider = "1.2.0"

Expand Down
8 changes: 4 additions & 4 deletions crates/pattern/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[package]
# suffix '-rizzen-yazston' appended to prevent package name clashes on 'crates.io'
name = "i18n_pattern-rizzen-yazston"
version = "0.5.0"
version = "0.6.0"
authors = ["Rizzen Yazston"]
edition = "2021"
rust-version = "1.70.0"
Expand All @@ -18,9 +18,9 @@ keywords = ["internationalization", "localization", "icu4x"]
categories = ["internationalization", "localization", "rust-pattern"]

[dependencies]
i18n_icu-rizzen-yazston = { version = "0.5.0", path = "../icu" }
i18n_utility-rizzen-yazston = { version = "0.5.0", path = "../utility" }
i18n_lexer-rizzen-yazston = { version = "0.5.0", path = "../lexer" } # Needed for Token, TokenType
i18n_icu-rizzen-yazston = { version = "0.6.0", path = "../icu" }
i18n_utility-rizzen-yazston = { version = "0.6.0", path = "../utility" }
i18n_lexer-rizzen-yazston = { version = "0.6.0", path = "../lexer" } # Needed for Token, TokenType
tree-rizzen-yazston = "0.4.0"
icu_locid = "1.2.0"
icu_provider = "1.2.0"
Expand Down
6 changes: 3 additions & 3 deletions crates/pattern/README.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ Stefano Angeleri for advice on various design aspects of implementing the compon
```
[dependencies]
icu_locid = "1.1.0"
i18n_icu-rizzen-yazston = "0.5.0"
i18n_utility-rizzen-yazston = "0.5.0"
i18n_lexer-rizzen-yazston = "0.5.0" # Needed for Token, TokenType
i18n_icu-rizzen-yazston = "0.6.0"
i18n_utility-rizzen-yazston = "0.6.0"
i18n_lexer-rizzen-yazston = "0.6.0" # Needed for Token, TokenType
tree-rizzen-yazston = "0.4.0"
icu_provider = "1.2.0"

Expand Down
4 changes: 2 additions & 2 deletions crates/provider/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[package]
# suffix '-rizzen-yazston' appended to prevent package name clashes on 'crates.io'
name = "i18n_provider-rizzen-yazston"
version = "0.5.0"
version = "0.6.0"
authors = ["Rizzen Yazston"]
edition = "2021"
rust-version = "1.70.0"
Expand All @@ -18,7 +18,7 @@ keywords = ["internationalization", "localization", "icu4x"]
categories = ["internationalization", "localization", "rust-pattern"]

[dependencies]
i18n_utility-rizzen-yazston = { version = "0.5.0", path = "../../utility" }
i18n_utility-rizzen-yazston = { version = "0.6.0", path = "../../utility" }

[dev-dependencies]

Expand Down
6 changes: 3 additions & 3 deletions crates/provider/sqlite3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[package]
# suffix '-rizzen-yazston' appended to prevent package name clashes on 'crates.io'
name = "i18n_provider_sqlite3-rizzen-yazston"
version = "0.5.0"
version = "0.6.0"
authors = ["Rizzen Yazston"]
edition = "2021"
rust-version = "1.70.0"
Expand All @@ -18,8 +18,8 @@ keywords = ["internationalization", "localization", "icu4x"]
categories = ["internationalization", "localization", "rust-pattern"]

[dependencies]
i18n_utility-rizzen-yazston = { version = "0.5.0", path = "../../utility" }
i18n_provider-rizzen-yazston = { version = "0.5.0", path = "../core" }
i18n_utility-rizzen-yazston = { version = "0.6.0", path = "../../utility" }
i18n_provider-rizzen-yazston = { version = "0.6.0", path = "../core" }
icu_locid = "1.2.0"
rusqlite = "0.29.0"

Expand Down
6 changes: 3 additions & 3 deletions crates/provider/sqlite3/README.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ Stefano Angeleri for advice on various design aspects of implementing the compon

```
[dependencies]
i18n_lstring-rizzen-yazston = "0.5.0"
i18n_provider-rizzen-yazston = "0.5.0"
i18n_provider_sqlite3-rizzen-yazston = "0.5.0"
i18n_lstring-rizzen-yazston = "0.6.0"
i18n_provider-rizzen-yazston = "0.6.0"
i18n_provider_sqlite3-rizzen-yazston = "0.6.0"
```

== Examples
Expand Down
2 changes: 1 addition & 1 deletion crates/utility/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[package]
# suffix '-rizzen-yazston' appended to prevent package name clashes on 'crates.io'
name = "i18n_utility-rizzen-yazston"
version = "0.5.0"
version = "0.6.0"
authors = ["Rizzen Yazston"]
edition = "2021"
rust-version = "1.70.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/utility/README.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ Simply include the `i18n_utility-rizzen-yazston` crate in the `Cargo.toml` to ma

```
[dependencies]
i18n_utility-rizzen-yazston = "0.6.0"
icu_locid = "1.2.0"
i18n_utility-rizzen-yazston = "0.5.0"
```


Expand Down

0 comments on commit ed69819

Please sign in to comment.