From adb995eb8ada2cbeabecbaedef21d4554565997f Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Sat, 10 Aug 2024 18:51:50 +0200 Subject: [PATCH] Prepare for 0.1.10 release --- CHANGELOG.md | 12 ++++++++++++ tr/Cargo.toml | 2 +- xtr/Cargo.toml | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b487118..0e85474 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## 0.1.10 - 2024-08-11 + +### tr + + - Use the name of the crate in `set_translator!` instead of the full module (#24) + - Allow `format_args!` as argument to `tr!` (#25) + +### xtr + + - Support module with raw identifier (#19) + - Allow `mod bar;` in `foo.rs` refer to `foo/bar/mod.rs` (#23) + ## 0.1.9 - 2023-06-12 ### xtr diff --git a/tr/Cargo.toml b/tr/Cargo.toml index d61a91b..308e940 100644 --- a/tr/Cargo.toml +++ b/tr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tr" -version = "0.1.7" +version = "0.1.10" authors = ["Olivier Goffart "] description = "tr! macro for localisation" license = "MIT" diff --git a/xtr/Cargo.toml b/xtr/Cargo.toml index 93cae66..48a4f3a 100644 --- a/xtr/Cargo.toml +++ b/xtr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xtr" -version = "0.1.9" +version = "0.1.10" authors = ["Olivier Goffart "] description = "Extract strings from a rust crate to be translated with gettext" license = "AGPL-3.0"