Skip to content

Commit 4f1ed93

Browse files
committed
chore: release main
1 parent 06a4357 commit 4f1ed93

File tree

9 files changed

+38
-8
lines changed

9 files changed

+38
-8
lines changed

.release-please-manifest.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"node": "2.1.1",
3-
"cli": "3.1.1",
4-
"lib": "3.1.1",
5-
"python": "2.1.1"
2+
"node": "2.2.0",
3+
"cli": "3.2.0",
4+
"lib": "3.2.0",
5+
"python": "2.2.0"
66
}

cli/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [3.2.0](https://github.com/TheOpenDictionary/odict/compare/cli/v3.1.1...cli/v3.2.0) (2025-11-21)
4+
5+
6+
### Features
7+
8+
* Preserve ordering of sense data ([#1339](https://github.com/TheOpenDictionary/odict/issues/1339)) ([777b8e9](https://github.com/TheOpenDictionary/odict/commit/777b8e96fbb35c0cdfab6f63fcd8f522c6c1cb3f))
9+
310
## [3.1.1](https://github.com/TheOpenDictionary/odict/compare/cli/v3.1.0...cli/v3.1.1) (2025-10-22)
411

512

cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "odict-cli"
3-
version = "3.1.1"
3+
version = "3.2.0"
44
edition = "2021"
55
description = "Lightning-fast dictionary file format and toolchain"
66
homepage = "https://odict.org"

lib/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [3.2.0](https://github.com/TheOpenDictionary/odict/compare/lib/v3.1.1...lib/v3.2.0) (2025-11-21)
4+
5+
6+
### Features
7+
8+
* **http:** Expose download methods on OpenDictionary ([99cd786](https://github.com/TheOpenDictionary/odict/commit/99cd786bd2aba9321670c890fe32f923165b3cbc))
9+
* Preserve ordering of sense data ([#1339](https://github.com/TheOpenDictionary/odict/issues/1339)) ([777b8e9](https://github.com/TheOpenDictionary/odict/commit/777b8e96fbb35c0cdfab6f63fcd8f522c6c1cb3f))
10+
311
## [3.1.1](https://github.com/TheOpenDictionary/odict/compare/lib/v3.1.0...lib/v3.1.1) (2025-10-22)
412

513

lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "odict"
33
description = "A blazingly-fast dictionary file format for human languages"
44
homepage = "https://odict.org"
55
repository = "https://github.com/TheOpenDictionary/odict"
6-
version = "3.1.1"
6+
version = "3.2.0"
77
edition = "2021"
88
license = "MIT"
99
exclude = ["benches/*", "tests/*"]

node/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@
44

55

66

7+
## [2.2.0](https://github.com/TheOpenDictionary/odict/compare/node/v2.1.1...node/v2.2.0) (2025-11-21)
8+
9+
10+
### Features
11+
12+
* **node:** Add Japanese tokenizer to Node package ([#1341](https://github.com/TheOpenDictionary/odict/issues/1341)) ([2c92c30](https://github.com/TheOpenDictionary/odict/commit/2c92c30c28dd6b665a5ed9158038afc963ff0d41))
13+
* Preserve ordering of sense data ([#1339](https://github.com/TheOpenDictionary/odict/issues/1339)) ([777b8e9](https://github.com/TheOpenDictionary/odict/commit/777b8e96fbb35c0cdfab6f63fcd8f522c6c1cb3f))
14+
715
## [2.1.1](https://github.com/TheOpenDictionary/odict/compare/node/v2.1.0...node/v2.1.1) (2025-10-22)
816

917

node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@odict/node",
3-
"version": "2.1.1",
3+
"version": "2.2.0",
44
"main": "index.js",
55
"types": "index.d.ts",
66
"browser": "browser.js",

python/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [2.2.0](https://github.com/TheOpenDictionary/odict/compare/python/v2.1.1...python/v2.2.0) (2025-11-21)
4+
5+
6+
### Features
7+
8+
* Preserve ordering of sense data ([#1339](https://github.com/TheOpenDictionary/odict/issues/1339)) ([777b8e9](https://github.com/TheOpenDictionary/odict/commit/777b8e96fbb35c0cdfab6f63fcd8f522c6c1cb3f))
9+
310
## [2.1.1](https://github.com/TheOpenDictionary/odict/compare/python/v2.1.0...python/v2.1.1) (2025-10-22)
411

512

python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "odict_python"
3-
version = "2.1.1"
3+
version = "2.2.0"
44
edition = "2021"
55

66
[lib]

0 commit comments

Comments
 (0)