From 991a73363aa11aa7411f8baeea751b837f24ff8c Mon Sep 17 00:00:00 2001 From: Tyler Nickerson Date: Sat, 4 Jan 2025 23:52:25 -0500 Subject: [PATCH] chore: release main --- .release-please-manifest.json | 6 +++--- Cargo.lock | 6 +++--- cli/CHANGELOG.md | 15 ++++++++++++++- cli/Cargo.toml | 2 +- lib/CHANGELOG.md | 15 ++++++++++++++- lib/Cargo.toml | 2 +- node/CHANGELOG.md | 11 ++++++++++- node/Cargo.toml | 2 +- node/package.json | 2 +- python/CHANGELOG.md | 9 ++++++++- 10 files changed, 56 insertions(+), 14 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 95bc9318f..3428033b5 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,7 +1,7 @@ { - "node": "1.0.0", - "cli": "2.0.0", - "lib": "2.0.0", + "node": "0.0.3", + "cli": "2.1.0", + "lib": "2.1.0", "java": "0.0.0", "python": "1.0.0" } \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index d10a84d30..2eb9eb693 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2302,7 +2302,7 @@ dependencies = [ [[package]] name = "odict" -version = "2.0.0" +version = "2.1.0" dependencies = [ "brotli 7.0.0", "byteorder", @@ -2328,7 +2328,7 @@ dependencies = [ [[package]] name = "odict-cli" -version = "2.0.0" +version = "2.1.0" dependencies = [ "actix-web", "anyhow", @@ -2346,7 +2346,7 @@ dependencies = [ [[package]] name = "odict_node" -version = "0.0.2" +version = "0.0.3" dependencies = [ "merge", "napi", diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index 4b5259977..de843b9f8 100644 --- a/cli/CHANGELOG.md +++ b/cli/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [2.1.0](https://github.com/TheOpenDictionary/odict/compare/cli/v2.0.0...cli/v2.1.0) (2025-01-05) + + +### Features + +* Add option to print entries as Markdown/HTML ([#1068](https://github.com/TheOpenDictionary/odict/issues/1068)) ([3422533](https://github.com/TheOpenDictionary/odict/commit/3422533514264dbe80e6ff4c6ac4e3c12f289ee8)) +* Expose Brotli compression options for `compile` ([#1067](https://github.com/TheOpenDictionary/odict/issues/1067)) ([0b282cd](https://github.com/TheOpenDictionary/odict/commit/0b282cde171ee3e6b1252c59fa9fc8f050e7c4b4)) + + +### Bug Fixes + +* Fix CLI description ([52e92f7](https://github.com/TheOpenDictionary/odict/commit/52e92f7a45e620ef586217f48b1f6d93ee9104d8)) + ## [2.0.0](https://github.com/TheOpenDictionary/odict/compare/cli-v2.0.0...cli/v2.0.0) (2024-12-26) @@ -36,4 +49,4 @@ * **deps:** Update rust crate serde to 1.0.198 ([2701027](https://github.com/TheOpenDictionary/odict/commit/2701027fe3ce7c7847f3e92a59b0b6092e73d941)) * **deps:** Update rust crate serde to 1.0.199 ([cca009c](https://github.com/TheOpenDictionary/odict/commit/cca009cf62b3a8a92f48c5172d222a4b3844a93a)) * **deps:** Update rust crate serde to 1.0.200 ([a192028](https://github.com/TheOpenDictionary/odict/commit/a19202869063703dc23e36ca9adbab5f04063d4e)) -* Fix dist ([2402b73](https://github.com/TheOpenDictionary/odict/commit/2402b73b43c1f8f202a8317253c115e84faa5953)) \ No newline at end of file +* Fix dist ([2402b73](https://github.com/TheOpenDictionary/odict/commit/2402b73b43c1f8f202a8317253c115e84faa5953)) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 3e9d08163..1c0f5238d 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "odict-cli" -version = "2.0.0" +version = "2.1.0" edition = "2021" description = "Lightning-fast dictionary file format and toolchain" homepage = "https://odict.org" diff --git a/lib/CHANGELOG.md b/lib/CHANGELOG.md index 1e563dcac..7fc88e56e 100644 --- a/lib/CHANGELOG.md +++ b/lib/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [2.1.0](https://github.com/TheOpenDictionary/odict/compare/lib-v2.0.0...lib/v2.1.0) (2025-01-05) + + +### ⚠ BREAKING CHANGES + +* **lib:** change compression from lz4 to brotli ([#1064](https://github.com/TheOpenDictionary/odict/issues/1064)) + +### Features + +* Add option to print entries as Markdown/HTML ([#1068](https://github.com/TheOpenDictionary/odict/issues/1068)) ([3422533](https://github.com/TheOpenDictionary/odict/commit/3422533514264dbe80e6ff4c6ac4e3c12f289ee8)) +* Expose Brotli compression options for `compile` ([#1067](https://github.com/TheOpenDictionary/odict/issues/1067)) ([0b282cd](https://github.com/TheOpenDictionary/odict/commit/0b282cde171ee3e6b1252c59fa9fc8f050e7c4b4)) +* **lib:** Change compression from lz4 to brotli ([#1064](https://github.com/TheOpenDictionary/odict/issues/1064)) ([6dc0b9a](https://github.com/TheOpenDictionary/odict/commit/6dc0b9a05d9d7dce4aed1a29ba3b0f54532748af)) + ## [2.0.0](https://github.com/TheOpenDictionary/odict/compare/lib-v2.0.0...lib-v2.0.0) (2024-12-25) @@ -66,4 +79,4 @@ * **deps:** Update rust crate serde to 1.0.200 ([a192028](https://github.com/TheOpenDictionary/odict/commit/a19202869063703dc23e36ca9adbab5f04063d4e)) * **deps:** Update rust crate serde_json to 1.0.115 ([e578bc8](https://github.com/TheOpenDictionary/odict/commit/e578bc8abf479d884a0764075290494bfb39af8d)) * **deps:** Update rust crate serde_json to 1.0.116 ([3f4c11d](https://github.com/TheOpenDictionary/odict/commit/3f4c11dc1f771ed0c6bfb4f86d12a177da13347a)) -* **deps:** Update rust crate uuid to 1.8.0 ([46b482f](https://github.com/TheOpenDictionary/odict/commit/46b482f29dd7a2287e0cf63e5f772d5a7ae2dba6)) \ No newline at end of file +* **deps:** Update rust crate uuid to 1.8.0 ([46b482f](https://github.com/TheOpenDictionary/odict/commit/46b482f29dd7a2287e0cf63e5f772d5a7ae2dba6)) diff --git a/lib/Cargo.toml b/lib/Cargo.toml index eb444466d..8db1693dd 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -3,7 +3,7 @@ name = "odict" description = "A blazingly-fast dictionary file format for human languages" homepage = "https://odict.org" repository = "https://github.com/TheOpenDictionary/odict" -version = "2.0.0" +version = "2.1.0" edition = "2021" license = "MIT" exclude = ["benches/*", "tests/*"] diff --git a/node/CHANGELOG.md b/node/CHANGELOG.md index 8522faf25..fc008bc48 100644 --- a/node/CHANGELOG.md +++ b/node/CHANGELOG.md @@ -4,6 +4,15 @@ + + +## [1.1.0](https://github.com/TheOpenDictionary/odict/compare/node-v1.0.0...node/v1.1.0) (2025-01-05) + + +### Features + +* Add option to print entries as Markdown/HTML ([#1068](https://github.com/TheOpenDictionary/odict/issues/1068)) ([3422533](https://github.com/TheOpenDictionary/odict/commit/3422533514264dbe80e6ff4c6ac4e3c12f289ee8)) + ## [1.0.0](https://github.com/TheOpenDictionary/odict/compare/node-v1.0.0...node-v1.0.0) (2024-12-26) @@ -24,4 +33,4 @@ * **ci:** Test JS CI ([c6230cd](https://github.com/TheOpenDictionary/odict/commit/c6230cde4137ff578839380ef8b18b34f0c226ac)) * **node:** Add repository field to Node package ([333c2b9](https://github.com/TheOpenDictionary/odict/commit/333c2b9ef3a225668d71f18b412ecb35eb63ca8a)) * **node:** Don't create new release ([8fb1a95](https://github.com/TheOpenDictionary/odict/commit/8fb1a95d4164ea9ed7d426342c260389bc08eed2)) -* **node:** Fix prepublish ([6249f4a](https://github.com/TheOpenDictionary/odict/commit/6249f4af2e8c2ff627405bd21e41bd0eaac10a60)) \ No newline at end of file +* **node:** Fix prepublish ([6249f4a](https://github.com/TheOpenDictionary/odict/commit/6249f4af2e8c2ff627405bd21e41bd0eaac10a60)) diff --git a/node/Cargo.toml b/node/Cargo.toml index 1618bfdbd..ddc302832 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "odict_node" -version = "0.0.2" +version = "0.0.3" publish = false [lib] diff --git a/node/package.json b/node/package.json index 7e4fbe727..b3e7e39ff 100644 --- a/node/package.json +++ b/node/package.json @@ -1,6 +1,6 @@ { "name": "@odict/node", - "version": "1.0.0", + "version": "1.1.0", "main": "index.js", "types": "index.d.ts", "files": [ diff --git a/python/CHANGELOG.md b/python/CHANGELOG.md index e9865a503..85bfb9d68 100644 --- a/python/CHANGELOG.md +++ b/python/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.0.0](https://github.com/TheOpenDictionary/odict/compare/python-v1.0.0...python/v1.0.0) (2025-01-05) + + +### Features + +* Add option to print entries as Markdown/HTML ([#1068](https://github.com/TheOpenDictionary/odict/issues/1068)) ([3422533](https://github.com/TheOpenDictionary/odict/commit/3422533514264dbe80e6ff4c6ac4e3c12f289ee8)) + ## [1.0.0](https://github.com/TheOpenDictionary/odict/compare/python-v1.0.0...python-v1.0.0) (2024-12-25) @@ -9,4 +16,4 @@ * Add stable Python binding 🎉 ([#1049](https://github.com/TheOpenDictionary/odict/issues/1049)) ([73c6e33](https://github.com/TheOpenDictionary/odict/commit/73c6e339b8614c6eb048de4ee7586dd5aa98803e)) * Rename Python library ([928343a](https://github.com/TheOpenDictionary/odict/commit/928343a7df53d64aa25d7e262f21f4aa0f09cc5e)) * Swap asdf with mise ([1451356](https://github.com/TheOpenDictionary/odict/commit/145135680138d5438e98d1f1d61a9b82edba9c7c)) -* Update Python package version ([1980388](https://github.com/TheOpenDictionary/odict/commit/19803884381c9f8e6483e35d73f93351529950e1)) \ No newline at end of file +* Update Python package version ([1980388](https://github.com/TheOpenDictionary/odict/commit/19803884381c9f8e6483e35d73f93351529950e1))