Skip to content

Commit 9c9f7e8

Browse files
committed
chore: bump versions to 0.9.1 and update docs
Update langcodec and langcodec-cli package versions from 0.9.0 to 0.9.1 and adjust corresponding dependency references in READMEs. Also refine the Markdown table formatting in the top-level README for consistent alignment and spacing.
1 parent deb2b5c commit 9c9f7e8

4 files changed

Lines changed: 13 additions & 13 deletions

File tree

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ Universal localization toolkit: library + CLI for Apple/Android/CSV/TSV.
99

1010
## Status
1111

12-
This is a `0.9.0` release available on [crates.io](https://crates.io/crates/langcodec). As a 0.x version, APIs may evolve. Contributions and feedback are very welcome!
12+
This is a `0.9.1` release available on [crates.io](https://crates.io/crates/langcodec). As a 0.x version, APIs may evolve. Contributions and feedback are very welcome!
1313

1414
---
1515

1616
## Installation
1717

1818
- CLI: `cargo install langcodec-cli`
19-
- Lib: add `langcodec = "0.9.0"` to your `Cargo.toml`
19+
- Lib: add `langcodec = "0.9.1"` to your `Cargo.toml`
2020

2121
---
2222

@@ -33,13 +33,13 @@ This is a `0.9.0` release available on [crates.io](https://crates.io/crates/lang
3333

3434
<!-- markdownlint-disable no-inline-html no-space-in-emphasis -->
3535

36-
| Format | Parse | Write | Convert | Merge | Plural Support | Comments |
37-
|-----------------------|:-----:|:-----:|:-------:|:-----:|:----------------:|----------|
38-
| Apple `.strings` | ✔️ | ✔️ | ✔️ | ✔️ | No | ✔️ |
39-
| Apple `.xcstrings` | ✔️ | ✔️ | ✔️ | ✔️ | Yes<sup>*</sup>| ✔️ |
40-
| Android `strings.xml` | ✔️ | ✔️ | ✔️ | ✔️ | Yes | ✔️ |
41-
| CSV | ✔️ | ✔️ | ✔️ | ✔️ | No | |
42-
| TSV | ✔️ | ✔️ | ✔️ | ✔️ | No | |
36+
| Format | Parse | Write | Convert | Merge | Plural Support | Comments |
37+
| --------------------- | :---: | :---: | :-----: | :---: | :-------------: | -------- |
38+
| Apple `.strings` | ✔️ | ✔️ | ✔️ | ✔️ | No | ✔️ |
39+
| Apple `.xcstrings` | ✔️ | ✔️ | ✔️ | ✔️ | Yes<sup>*</sup> | ✔️ |
40+
| Android `strings.xml` | ✔️ | ✔️ | ✔️ | ✔️ | Yes | ✔️ |
41+
| CSV | ✔️ | ✔️ | ✔️ | ✔️ | No | |
42+
| TSV | ✔️ | ✔️ | ✔️ | ✔️ | No | |
4343

4444
<sup>* `.xcstrings` plural support is implemented via CLDR categories.</sup>
4545

langcodec-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "langcodec-cli"
3-
version = "0.9.0"
3+
version = "0.9.1"
44
edition = "2024"
55
description = "A universal CLI tool for converting and inspecting localization files (Apple, Android, CSV, etc.)"
66
license = "MIT"
@@ -12,7 +12,7 @@ categories = ["command-line-utilities", "internationalization", "localization"]
1212
documentation = "https://docs.rs/langcodec-cli"
1313

1414
[dependencies]
15-
langcodec = { path = "../langcodec", version = "0.9.0" }
15+
langcodec = { path = "../langcodec", version = "0.9.1" }
1616
clap = { version = "4", features = ["derive"] }
1717
clap_complete = "4"
1818
unicode-width = "0.2.1"

langcodec/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "langcodec"
3-
version = "0.9.0"
3+
version = "0.9.1"
44
edition = "2024"
55
description = "Universal localization file toolkit for Rust. Supports Apple, Android, and CSV formats."
66
license = "MIT"

langcodec/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Universal localization file toolkit for Rust. Parse, write, convert, merge.
1010

1111
```toml
1212
[dependencies]
13-
langcodec = "0.9.0"
13+
langcodec = "0.9.1"
1414
```
1515

1616
Docs: <https://docs.rs/langcodec>

0 commit comments

Comments
 (0)