Skip to content

Commit

Permalink
Fix error about required translation tree files in main example of do…
Browse files Browse the repository at this point in the history
…cumentation (#56)
  • Loading branch information
mondeja authored May 1, 2024
1 parent 87ac40f commit 9af0490
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 12 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`.
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion leptos-fluent-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion leptos-fluent/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 4 additions & 2 deletions leptos-fluent/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 4 additions & 2 deletions leptos-fluent/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,10 @@
//! .
//! ├── 📄 Cargo.toml
//! ├── 📁 locales
//! │ ├── 📄 en.ftl
//! │ └── 📄 es.ftl
//! │ ├── 📁 en
//! │ │ └── 📄 main.ftl
//! │ └── 📁 es
//! │ └── 📄 main.ftl
//! └── 📁 src
//! ├── 📄 main.rs
//! └── 📄 lib.rs
Expand Down

0 comments on commit 9af0490

Please sign in to comment.