Skip to content

Commit

Permalink
chore: release v2
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Nov 17, 2024
1 parent fc1d343 commit 2682b5f
Show file tree
Hide file tree
Showing 10 changed files with 147 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"bindings/node": "0.0.0",
"cli": "0.0.0",
"lib": "0.0.0",
"bindings/java": "0.0.0"
"bindings/node": "0.0.1",
"cli": "2.0.0",
"lib": "2.0.0",
"bindings/java": "1.0.0"
}
6 changes: 3 additions & 3 deletions Cargo.lock

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

8 changes: 8 additions & 0 deletions bindings/java/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## 1.0.0 (2024-11-17)


### Features

* Deployment changes ([#1002](https://github.com/TheOpenDictionary/odict/issues/1002)) ([981c223](https://github.com/TheOpenDictionary/odict/commit/981c2232fe8908cb9a0afd95f6c04e32a4c698ed))
10 changes: 10 additions & 0 deletions bindings/node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Changelog



## 1.0.0 (2024-11-17)


### Features

* Deployment changes ([#1002](https://github.com/TheOpenDictionary/odict/issues/1002)) ([981c223](https://github.com/TheOpenDictionary/odict/commit/981c2232fe8908cb9a0afd95f6c04e32a4c698ed))
2 changes: 1 addition & 1 deletion bindings/node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "odict_node"
version = "0.0.0"
version = "0.0.1"

[lib]
crate-type = ["cdylib"]
Expand Down
2 changes: 1 addition & 1 deletion bindings/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@odict/node",
"version": "0.0.1-next.0",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"napi": {
Expand Down
39 changes: 39 additions & 0 deletions cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Changelog

## 2.0.0 (2024-11-17)


### Features

* Add basic WASM support ([#394](https://github.com/TheOpenDictionary/odict/issues/394)) ([8df4e85](https://github.com/TheOpenDictionary/odict/commit/8df4e851c175dc5677d9580a29e9d38927f796a6))
* Add indexing ([#656](https://github.com/TheOpenDictionary/odict/issues/656)) ([a94db99](https://github.com/TheOpenDictionary/odict/commit/a94db9953c34df96bedff5c3ebde989a64d27ace))
* **config:** Port `alias` logic and CLI command to Rust ([#641](https://github.com/TheOpenDictionary/odict/issues/641)) ([853bf43](https://github.com/TheOpenDictionary/odict/commit/853bf435ecf6808a8f7d0daa724802de9dac43f1))
* Deployment changes ([#1002](https://github.com/TheOpenDictionary/odict/issues/1002)) ([981c223](https://github.com/TheOpenDictionary/odict/commit/981c2232fe8908cb9a0afd95f6c04e32a4c698ed))
* Finalize search ([#693](https://github.com/TheOpenDictionary/odict/issues/693)) ([0e17c88](https://github.com/TheOpenDictionary/odict/commit/0e17c88142befd6c221a0008f30688a05151b865))
* **v2:** Add `new` command ([#700](https://github.com/TheOpenDictionary/odict/issues/700)) ([6f65dc3](https://github.com/TheOpenDictionary/odict/commit/6f65dc371ae4b51600673b853353406ecaf92cb3))
* **v2:** Add info command ([#800](https://github.com/TheOpenDictionary/odict/issues/800)) ([8b73cc4](https://github.com/TheOpenDictionary/odict/commit/8b73cc4e687708abc90848740b827986391a2175))
* **v2:** Add pretty printing ([#701](https://github.com/TheOpenDictionary/odict/issues/701)) ([e24160f](https://github.com/TheOpenDictionary/odict/commit/e24160f4023b1be97b0d8cb98e03b82cecdedd8e))
* **v2:** Add Rust Node bindings ([#760](https://github.com/TheOpenDictionary/odict/issues/760)) ([aac5501](https://github.com/TheOpenDictionary/odict/commit/aac550181f6d144649ce9ad0ff823967b29668bf))
* **v2:** Add serve command ([#748](https://github.com/TheOpenDictionary/odict/issues/748)) ([ff10753](https://github.com/TheOpenDictionary/odict/commit/ff107533fcb25094230770b8c51697348caa6fc2))
* **v2:** Add SQL dumping ([#747](https://github.com/TheOpenDictionary/odict/issues/747)) ([caceb88](https://github.com/TheOpenDictionary/odict/commit/caceb883e527358a0f0e74221130af572c0f561a))
* **v2:** Implement basic dumping ([#654](https://github.com/TheOpenDictionary/odict/issues/654)) ([5e29764](https://github.com/TheOpenDictionary/odict/commit/5e29764048767752c56178df5e1ac1e9160894d0))


### Bug Fixes

* **deps:** Update module github.com/google/flatbuffers to v24 ([aa73d33](https://github.com/TheOpenDictionary/odict/commit/aa73d33d6685f6b15d4223943967c748d1bae8bd))
* **deps:** Update module github.com/google/flatbuffers to v24.3.7+incompatible ([2e9a949](https://github.com/TheOpenDictionary/odict/commit/2e9a949bc475bd11e294717b7e81ed4c48023138))
* **deps:** Update module github.com/google/uuid to v1.6.0 ([6a036b1](https://github.com/TheOpenDictionary/odict/commit/6a036b190d750096fd888fb2580988b41473762e))
* **deps:** Update module github.com/imdario/mergo to v1 ([#388](https://github.com/TheOpenDictionary/odict/issues/388)) ([de31bb5](https://github.com/TheOpenDictionary/odict/commit/de31bb52c3719fb687eb61f4e9d50455f992560e))
* **deps:** Update module github.com/urfave/cli/v2 to v2.27.1 ([d8e0648](https://github.com/TheOpenDictionary/odict/commit/d8e0648b196bb2786d5335746abe558cf7ffd462))
* **deps:** Update rust crate clap to 4.5.4 ([e8f91a3](https://github.com/TheOpenDictionary/odict/commit/e8f91a3bc00743e73e8ca1efbf21640c42935d61))
* **deps:** Update rust crate pulldown-cmark to 0.10.2 ([6303c50](https://github.com/TheOpenDictionary/odict/commit/6303c50f9fb4b1de0e0c7717bfe49fdb255de0af))
* **deps:** Update rust crate pulldown-cmark to 0.10.3 ([0311794](https://github.com/TheOpenDictionary/odict/commit/031179459880fc9a4a1e9ce146205ffb9b744ada))
* **deps:** Update rust crate pulldown-cmark to 0.11.0 ([d4e85f5](https://github.com/TheOpenDictionary/odict/commit/d4e85f54b2c973721ff99fb5c091489223927b35))
* **deps:** Update rust crate pulldown-cmark to 0.12.0 ([0885bf8](https://github.com/TheOpenDictionary/odict/commit/0885bf87c345103af6cb6138d220cba661b0f9ff))
* **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))
* **pos:** Fix mismatch between buffer strings and POS tags ([#555](https://github.com/TheOpenDictionary/odict/issues/555)) ([fe190f1](https://github.com/TheOpenDictionary/odict/commit/fe190f1c983202b68f8a9cc1bc59ab5ead312eef))
* **print:** Fix formatting ([e3f5280](https://github.com/TheOpenDictionary/odict/commit/e3f52802057fe2c53d18fb3cbeed578cd0dbef0c))
* **sql:** Fix duplicate values in generated SQL ([#590](https://github.com/TheOpenDictionary/odict/issues/590)) ([30c0c9f](https://github.com/TheOpenDictionary/odict/commit/30c0c9f61e4b7ce2c794e9b717c0a385dd184381))
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cli"
version = "2.0.0-beta.0"
version = "2.0.0"
edition = "2021"
description = "A lightning-fast dictionary file format and toolchain"
homepage = "https://odict.org"
Expand Down
79 changes: 79 additions & 0 deletions lib/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
# Changelog

## 2.0.0 (2024-11-17)


### Features

* Add basic WASM support ([#394](https://github.com/TheOpenDictionary/odict/issues/394)) ([8df4e85](https://github.com/TheOpenDictionary/odict/commit/8df4e851c175dc5677d9580a29e9d38927f796a6))
* Add indexing ([#656](https://github.com/TheOpenDictionary/odict/issues/656)) ([a94db99](https://github.com/TheOpenDictionary/odict/commit/a94db9953c34df96bedff5c3ebde989a64d27ace))
* Add publish command and update Cargo.toml ([60af67d](https://github.com/TheOpenDictionary/odict/commit/60af67de1d8bd15046b3eb4a44ac35c86268a126))
* **config:** Port `alias` logic and CLI command to Rust ([#641](https://github.com/TheOpenDictionary/odict/issues/641)) ([853bf43](https://github.com/TheOpenDictionary/odict/commit/853bf435ecf6808a8f7d0daa724802de9dac43f1))
* Deployment changes ([#1002](https://github.com/TheOpenDictionary/odict/issues/1002)) ([981c223](https://github.com/TheOpenDictionary/odict/commit/981c2232fe8908cb9a0afd95f6c04e32a4c698ed))
* Exclude files from crate ([f5992eb](https://github.com/TheOpenDictionary/odict/commit/f5992eb429370886cb7988b69546bcad48d59c20))
* Finalize search ([#693](https://github.com/TheOpenDictionary/odict/issues/693)) ([0e17c88](https://github.com/TheOpenDictionary/odict/commit/0e17c88142befd6c221a0008f30688a05151b865))
* Upgrade rkyv to 0.8.8 ([dbb16d9](https://github.com/TheOpenDictionary/odict/commit/dbb16d97f632076fa72d5976a46dbdd5236545e6))
* **v2:** Add `new` command ([#700](https://github.com/TheOpenDictionary/odict/issues/700)) ([6f65dc3](https://github.com/TheOpenDictionary/odict/commit/6f65dc371ae4b51600673b853353406ecaf92cb3))
* **v2:** Add info command ([#800](https://github.com/TheOpenDictionary/odict/issues/800)) ([8b73cc4](https://github.com/TheOpenDictionary/odict/commit/8b73cc4e687708abc90848740b827986391a2175))
* **v2:** Add pretty printing ([#701](https://github.com/TheOpenDictionary/odict/issues/701)) ([e24160f](https://github.com/TheOpenDictionary/odict/commit/e24160f4023b1be97b0d8cb98e03b82cecdedd8e))
* **v2:** Add Rust Node bindings ([#760](https://github.com/TheOpenDictionary/odict/issues/760)) ([aac5501](https://github.com/TheOpenDictionary/odict/commit/aac550181f6d144649ce9ad0ff823967b29668bf))
* **v2:** Add serve command ([#748](https://github.com/TheOpenDictionary/odict/issues/748)) ([ff10753](https://github.com/TheOpenDictionary/odict/commit/ff107533fcb25094230770b8c51697348caa6fc2))
* **v2:** Add SQL dumping ([#747](https://github.com/TheOpenDictionary/odict/issues/747)) ([caceb88](https://github.com/TheOpenDictionary/odict/commit/caceb883e527358a0f0e74221130af572c0f561a))
* **v2:** Implement basic dumping ([#654](https://github.com/TheOpenDictionary/odict/issues/654)) ([5e29764](https://github.com/TheOpenDictionary/odict/commit/5e29764048767752c56178df5e1ac1e9160894d0))
* **v2:** Make tokenizer customizable ([975e4b0](https://github.com/TheOpenDictionary/odict/commit/975e4b0881876b31e7a7d97c01f8178668867deb))


### Bug Fixes

* **ci:** Remove charabia from Node package ([cf02d0c](https://github.com/TheOpenDictionary/odict/commit/cf02d0c6f7a6b9015c88e563e7d24a846428b145))
* **deps:** Update github.com/gomarkdown/markdown digest to 1d6d208 ([33630d3](https://github.com/TheOpenDictionary/odict/commit/33630d3a9017b695c3ac4f5ce1c3f487d3cd84f9))
* **deps:** Update module github.com/blevesearch/bleve_index_api to v1.1.5 ([f2c7869](https://github.com/TheOpenDictionary/odict/commit/f2c7869f55621f3e093976f53384fc9a1919dde4))
* **deps:** Update module github.com/blevesearch/bleve_index_api to v1.1.6 ([17158be](https://github.com/TheOpenDictionary/odict/commit/17158bec25d2b5dbb2cfce611a3a41acbc8a477f))
* **deps:** Update module github.com/blevesearch/bleve/v2 to v2.4.0 ([911283c](https://github.com/TheOpenDictionary/odict/commit/911283cae2ced80f4438075dec618bf06c3b3483))
* **deps:** Update module github.com/bokwoon95/sq to v0.4.5 ([f0c0321](https://github.com/TheOpenDictionary/odict/commit/f0c03217210c1869697ccef28edf4afe23a1578f))
* **deps:** Update module github.com/bokwoon95/sqddl to v0.4.10 ([5afadcc](https://github.com/TheOpenDictionary/odict/commit/5afadccb084e096b2e8ef2035d9e273f78b5dacb))
* **deps:** Update module github.com/bokwoon95/sqddl to v0.4.11 ([649f4fc](https://github.com/TheOpenDictionary/odict/commit/649f4fc37ff3051b5d04242e94a7b45a21bc75cc))
* **deps:** Update module github.com/gkampitakis/go-snaps to v0.5.0 ([16af56f](https://github.com/TheOpenDictionary/odict/commit/16af56f724d83519fab209bec71032e238f310aa))
* **deps:** Update module github.com/gkampitakis/go-snaps to v0.5.1 ([e0c776c](https://github.com/TheOpenDictionary/odict/commit/e0c776c1b0842314abdfc415141093c13fb50096))
* **deps:** Update module github.com/gkampitakis/go-snaps to v0.5.2 ([e25509a](https://github.com/TheOpenDictionary/odict/commit/e25509ae396ad6dcf86debe44a27fd2962d5339c))
* **deps:** Update module github.com/google/flatbuffers to v24 ([aa73d33](https://github.com/TheOpenDictionary/odict/commit/aa73d33d6685f6b15d4223943967c748d1bae8bd))
* **deps:** Update module github.com/google/flatbuffers to v24.3.7+incompatible ([2e9a949](https://github.com/TheOpenDictionary/odict/commit/2e9a949bc475bd11e294717b7e81ed4c48023138))
* **deps:** Update module github.com/google/uuid to v1.6.0 ([6a036b1](https://github.com/TheOpenDictionary/odict/commit/6a036b190d750096fd888fb2580988b41473762e))
* **deps:** Update module github.com/imdario/mergo to v1 ([#388](https://github.com/TheOpenDictionary/odict/issues/388)) ([de31bb5](https://github.com/TheOpenDictionary/odict/commit/de31bb52c3719fb687eb61f4e9d50455f992560e))
* **deps:** Update module github.com/schollz/progressbar/v3 to v3.14.2 ([44b3987](https://github.com/TheOpenDictionary/odict/commit/44b3987fdb45cc1dfbe4a69a60597e256fb7accd))
* **deps:** Update module github.com/stretchr/testify to v1.9.0 ([6a2232d](https://github.com/TheOpenDictionary/odict/commit/6a2232d2b060dcdc7d426d1bd4b1bc3c76ef16d9))
* **deps:** Update rust crate charabia to 0.8.10 ([848b2fc](https://github.com/TheOpenDictionary/odict/commit/848b2fc3076a249a19b9e561b336a6c23ab86846))
* **deps:** Update rust crate charabia to 0.8.8 ([ceb4b25](https://github.com/TheOpenDictionary/odict/commit/ceb4b25e4c9ff65a97d3f964ad1f6091309e9a19))
* **deps:** Update rust crate charabia to 0.8.9 ([eee9a23](https://github.com/TheOpenDictionary/odict/commit/eee9a232a5e0167b4cdfff1b4ecf6b36af04a1ce))
* **deps:** Update rust crate charabia to 0.9.0 ([e3c1c86](https://github.com/TheOpenDictionary/odict/commit/e3c1c86b9859c66a4f003acfeba168925bfec9b4))
* **deps:** Update rust crate lz4_flex to 0.11.3 ([c2be1b2](https://github.com/TheOpenDictionary/odict/commit/c2be1b2ef022895b63ce706c8147a9ae6957762c))
* **deps:** Update rust crate pulldown-cmark to 0.10.2 ([6303c50](https://github.com/TheOpenDictionary/odict/commit/6303c50f9fb4b1de0e0c7717bfe49fdb255de0af))
* **deps:** Update rust crate pulldown-cmark to 0.10.3 ([0311794](https://github.com/TheOpenDictionary/odict/commit/031179459880fc9a4a1e9ce146205ffb9b744ada))
* **deps:** Update rust crate pulldown-cmark to 0.11.0 ([d4e85f5](https://github.com/TheOpenDictionary/odict/commit/d4e85f54b2c973721ff99fb5c091489223927b35))
* **deps:** Update rust crate pulldown-cmark to 0.12.0 ([0885bf8](https://github.com/TheOpenDictionary/odict/commit/0885bf87c345103af6cb6138d220cba661b0f9ff))
* **deps:** Update rust crate quick-xml to 0.32.0 ([e43be29](https://github.com/TheOpenDictionary/odict/commit/e43be29f45db751e41bfa7f14f534f7091e4288f))
* **deps:** Update rust crate quick-xml to 0.33.0 ([8b1209f](https://github.com/TheOpenDictionary/odict/commit/8b1209f70e2bce817f1e274b4ff78b013a1b1fd1))
* **deps:** Update rust crate quick-xml to 0.34.0 ([7fbb066](https://github.com/TheOpenDictionary/odict/commit/7fbb0664f04fc38436a8d2c5f7269aedba183314))
* **deps:** Update rust crate quick-xml to 0.35.0 ([b29ed90](https://github.com/TheOpenDictionary/odict/commit/b29ed9056334014160ccdbd2448f25aeae91f38a))
* **deps:** Update rust crate quick-xml to 0.36.0 ([a1458d9](https://github.com/TheOpenDictionary/odict/commit/a1458d944430dccaf830bc6c7574709cf776b69d))
* **deps:** Update rust crate quick-xml to 0.37.0 ([c221e8e](https://github.com/TheOpenDictionary/odict/commit/c221e8ea829db0c693fd537bcb169fbf379224d7))
* **deps:** Update rust crate rayon to 1.10.0 ([1ef7881](https://github.com/TheOpenDictionary/odict/commit/1ef788104275cee64d9ce7a3358689f47c45725d))
* **deps:** Update rust crate regex to 1.10.4 ([4e021f2](https://github.com/TheOpenDictionary/odict/commit/4e021f20d5b7b33c14c5481e5f3615c62b061b33))
* **deps:** Update rust crate rkyv to 0.7.44 ([8d27070](https://github.com/TheOpenDictionary/odict/commit/8d27070c8d2af3d548c0fe227d4ba38d65ee99d8))
* **deps:** Update rust crate sea-query to 0.31.0 ([769b0fb](https://github.com/TheOpenDictionary/odict/commit/769b0fbe629d5d56186e79bb6d310b48fc4a928c))
* **deps:** Update rust crate sea-query to 0.32.0 ([fa18174](https://github.com/TheOpenDictionary/odict/commit/fa18174e3582b498bcdf7dd3c731cd6766e34d99))
* **deps:** Update rust crate serde to 1.0.197 ([0bad370](https://github.com/TheOpenDictionary/odict/commit/0bad37035c44e35576ea78816d8016934913c126))
* **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))
* **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))
* **pos:** Fix incorrect and missing POS labels ([b55fca0](https://github.com/TheOpenDictionary/odict/commit/b55fca011375b8a1cbf97d2b7b2fc934c7defac3))
* **pos:** Fix mismatch between buffer strings and POS tags ([#555](https://github.com/TheOpenDictionary/odict/issues/555)) ([fe190f1](https://github.com/TheOpenDictionary/odict/commit/fe190f1c983202b68f8a9cc1bc59ab5ead312eef))
* **print:** Fix formatting ([e3f5280](https://github.com/TheOpenDictionary/odict/commit/e3f52802057fe2c53d18fb3cbeed578cd0dbef0c))
* **read:** Improve incompatibility error message ([39a7103](https://github.com/TheOpenDictionary/odict/commit/39a7103bbeb902dc380dd4963799556bd86ba85a))
* **sql:** Fix duplicate values in generated SQL ([#590](https://github.com/TheOpenDictionary/odict/issues/590)) ([30c0c9f](https://github.com/TheOpenDictionary/odict/commit/30c0c9f61e4b7ce2c794e9b717c0a385dd184381))
* **sql:** Fix types.md to convert to string on sql dump ([#520](https://github.com/TheOpenDictionary/odict/issues/520)) ([f018e00](https://github.com/TheOpenDictionary/odict/commit/f018e00bcbb36a529adfefe57be9405cf593d9b2))
* **sql:** Important SQL fixes ([82538a0](https://github.com/TheOpenDictionary/odict/commit/82538a0e84ae3e5e0b91b1c3e15e063b56e09cbd))
* **test:** Add test cleanup ([eaf2ded](https://github.com/TheOpenDictionary/odict/commit/eaf2ded8c5631512af4f0f7abde3a33fb3c44a95))
2 changes: 1 addition & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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-beta.0"
version = "2.0.0"
edition = "2021"
license = "MIT"
exclude = ["benches/*", "tests/*"]
Expand Down

0 comments on commit 2682b5f

Please sign in to comment.