Skip to content

Commit 71e8419

Browse files
committed
Release v3.0.1
1 parent 22e0609 commit 71e8419

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ license = "MIT"
1010
name = "rust-i18n"
1111
readme = "README.md"
1212
repository = "https://github.com/longbridgeapp/rust-i18n"
13-
version = "3.0.1-alpha.0"
13+
version = "3.0.1"
1414

1515
[dependencies]
1616
once_cell = "1.10.0"
17-
rust-i18n-support = { path = "./crates/support", version = "3.0.0" }
17+
rust-i18n-support = { path = "./crates/support", version = "3.0.1" }
1818
rust-i18n-macro = { path = "./crates/macro", version = "3.0.0" }
1919
smallvec = "1.12.0"
2020

crates/support/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ license = "MIT"
55
name = "rust-i18n-support"
66
readme = "../../README.md"
77
repository = "https://github.com/longbridgeapp/rust-i18n"
8-
version = "3.0.0"
8+
version = "3.0.1"
99

1010
[dependencies]
1111
arc-swap = "1.6.0"

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,6 @@ mod tests {
186186
#[test]
187187
fn test_locale() {
188188
assert_locale_type(&locale(), &CURRENT_LOCALE.as_str());
189-
assert_eq!(locale().deref(), "en");
189+
assert_eq!(&*locale(), "en");
190190
}
191191
}

0 commit comments

Comments
 (0)