Skip to content

Commit

Permalink
update readme/docs references to i18n-embed version
Browse files Browse the repository at this point in the history
+ bump i18n-embed to v0.10.1
  • Loading branch information
kellpossible committed Jan 11, 2021
1 parent e042024 commit 4028ee6
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ Add the following to your `Cargo.toml` dependencies:

```toml
[dependencies]
i18n-embed = "0.7"
i18n-embed = "0.10"
```

A minimal example for how to embed the compiled translations into your application could be:
Expand Down
4 changes: 4 additions & 0 deletions i18n-embed/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog for `i18n-embed`

## v0.10.1

+ Update references to `i18n-embed` version in readme and source code examples.

## v0.10.0

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion i18n-embed/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MIT"
name = "i18n-embed"
readme = "README.md"
repository = "https://github.com/kellpossible/cargo-i18n/tree/master/i18n-embed"
version = "0.10.0"
version = "0.10.1"

[package.metadata.docs.rs]
all-features = true
Expand Down
2 changes: 1 addition & 1 deletion i18n-embed/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ First you need to compile `i18n-embed` in your `Cargo.toml` with the `fluent-sys

```toml
[dependencies]
i18n-embed = { version = "0.8", features = ["fluent-system", "desktop-requester"]}
i18n-embed = { version = "0.10", features = ["fluent-system", "desktop-requester"]}
rust-embed = "5"
unic-langid = "0.9"
```
Expand Down
4 changes: 2 additions & 2 deletions i18n-embed/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
//!
//! ```toml
//! [dependencies]
//! i18n-embed = { version = "0.8", features = ["fluent-system", "desktop-requester"]}
//! i18n-embed = { version = "0.10", features = ["fluent-system", "desktop-requester"]}
//! rust-embed = "5"
//! ```
//!
Expand Down Expand Up @@ -170,7 +170,7 @@
//!
//! ```toml
//! [dependencies]
//! i18n-embed = { version = "0.8", features = ["gettext-system", "desktop-requester"]}
//! i18n-embed = { version = "0.10", features = ["gettext-system", "desktop-requester"]}
//! rust-embed = "5"
//! ```
//!
Expand Down

0 comments on commit 4028ee6

Please sign in to comment.