diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 46ecddd2..514247f8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,8 +45,6 @@ jobs: browser: firefox - runs-on: ubuntu-latest browser: chrome - - runs-on: macos-latest - browser: firefox - runs-on: macos-latest browser: chrome - runs-on: windows-latest diff --git a/CHANGELOG.md b/CHANGELOG.md index d40c8a10..9274f90f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## 2024-05-01 - [0.0.22] + +- Fix error about required translation tree files in main example of documentation. + ## 2024-03-23 - [0.0.21] - Minimum Leptos version set to `0.6`. @@ -36,6 +40,7 @@ - Added all ISO-639-1 and ISO-639-2 languages. +[0.0.22]: https://github.com/mondeja/leptos-fluent/compare/v0.0.21...v0.0.22 [0.0.21]: https://github.com/mondeja/leptos-fluent/compare/v0.0.20...v0.0.21 [0.0.20]: https://github.com/mondeja/leptos-fluent/compare/v0.0.17...v0.0.20 [0.0.17]: https://github.com/mondeja/leptos-fluent/compare/v0.0.15...v0.0.17 diff --git a/Cargo.lock b/Cargo.lock index 9f6b4ae4..0d643d4e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1855,7 +1855,7 @@ dependencies = [ [[package]] name = "leptos-fluent" -version = "0.0.21" +version = "0.0.22" dependencies = [ "actix-web 3.3.3", "cfg-if 1.0.0", @@ -1890,7 +1890,7 @@ dependencies = [ [[package]] name = "leptos-fluent-macros" -version = "0.0.21" +version = "0.0.22" dependencies = [ "cfg-if 1.0.0", "proc-macro2", diff --git a/README.md b/README.md index b46fad81..9238b717 100644 --- a/README.md +++ b/README.md @@ -38,8 +38,10 @@ Giving the following directory structure: . ├── 📄 Cargo.toml ├── 📁 locales -│ ├── 📄 en.ftl -│ └── 📄 es.ftl +│ ├── 📁 en +│ │ └── 📄 main.ftl +│ └── 📁 es +│ └── 📄 main.ftl └── 📁 src ├── 📄 main.rs └── 📄 lib.rs diff --git a/leptos-fluent-macros/Cargo.toml b/leptos-fluent-macros/Cargo.toml index 62a8d067..012dfa40 100644 --- a/leptos-fluent-macros/Cargo.toml +++ b/leptos-fluent-macros/Cargo.toml @@ -2,7 +2,7 @@ name = "leptos-fluent-macros" description = "Macros for leptos-fluent" edition = "2021" -version = "0.0.21" +version = "0.0.22" license = "MIT" documentation = "https://docs.rs/leptos-fluent" repository = "https://github.com/mondeja/leptos-fluent" diff --git a/leptos-fluent/Cargo.toml b/leptos-fluent/Cargo.toml index 254427e9..0733837a 100644 --- a/leptos-fluent/Cargo.toml +++ b/leptos-fluent/Cargo.toml @@ -2,7 +2,7 @@ name = "leptos-fluent" description = "Fluent framework for internationalization of Leptos applications" edition = "2021" -version = "0.0.21" +version = "0.0.22" license = "MIT" documentation = "https://docs.rs/leptos-fluent" repository = "https://github.com/mondeja/leptos-fluent" diff --git a/leptos-fluent/README.md b/leptos-fluent/README.md index b46fad81..9238b717 100644 --- a/leptos-fluent/README.md +++ b/leptos-fluent/README.md @@ -38,8 +38,10 @@ Giving the following directory structure: . ├── 📄 Cargo.toml ├── 📁 locales -│ ├── 📄 en.ftl -│ └── 📄 es.ftl +│ ├── 📁 en +│ │ └── 📄 main.ftl +│ └── 📁 es +│ └── 📄 main.ftl └── 📁 src ├── 📄 main.rs └── 📄 lib.rs diff --git a/leptos-fluent/src/lib.rs b/leptos-fluent/src/lib.rs index d76ec44e..0bbdc0f0 100644 --- a/leptos-fluent/src/lib.rs +++ b/leptos-fluent/src/lib.rs @@ -31,8 +31,10 @@ //! . //! ├── 📄 Cargo.toml //! ├── 📁 locales -//! │ ├── 📄 en.ftl -//! │ └── 📄 es.ftl +//! │ ├── 📁 en +//! │ │ └── 📄 main.ftl +//! │ └── 📁 es +//! │ └── 📄 main.ftl //! └── 📁 src //! ├── 📄 main.rs //! └── 📄 lib.rs