diff --git a/CHANGELOG.md b/CHANGELOG.md index 42a916f..a4d6e41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,33 @@ +## v0.8.2 (2024-03-11) + +### Ci + +* ci: add Python 3.12 to test matrix (#82) + +* ci: add Python 3.12 to test matrix + +* chore: use sentencepiece 0.2.0 or higher + +* fix: update poetry.lock ([`8084117`](https://github.com/AI21Labs/ai21-tokenizer/commit/8084117c74813a99b79ecefd12888817470e1838)) + +### Fix + +* fix: docs (#83) ([`c26949a`](https://github.com/AI21Labs/ai21-tokenizer/commit/c26949a62d5e612a7ff8132c6e6896b263be7b28)) + +### Unknown + +* Update issue templates ([`86ea6e7`](https://github.com/AI21Labs/ai21-tokenizer/commit/86ea6e79a5670c0e8049ac587ed1b5f4b8790ae9)) + + ## v0.8.1 (2024-01-07) +### Chore + +* chore(release): v0.8.1 [skip ci] ([`fcacbf8`](https://github.com/AI21Labs/ai21-tokenizer/commit/fcacbf89a590e47d6ac3b8d385c9a6628a3ef4b2)) + ### Fix * fix: re-ordered parameters in ctor to avoid a breaking change (#79) ([`6c1b608`](https://github.com/AI21Labs/ai21-tokenizer/commit/6c1b6088c0914ffc77b53613047606c398e0557c)) diff --git a/ai21_tokenizer/version.py b/ai21_tokenizer/version.py index 26df0ed..a6cfa12 100644 --- a/ai21_tokenizer/version.py +++ b/ai21_tokenizer/version.py @@ -1 +1 @@ -VERSION = "0.8.1" +VERSION = "0.8.2" diff --git a/pyproject.toml b/pyproject.toml index 05248ac..f662b6e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -59,7 +59,7 @@ schema_pattern = "(build|ci|docs|feat|fix|perf|refactor|style|test|chore|revert| [tool.poetry] name = "ai21-tokenizer" -version = "0.8.1" +version = "0.8.2" description = "" authors = ["AI21 Labs"] readme = "README.md" @@ -114,6 +114,7 @@ newline_sequence = "\n" + [tool.poetry.group.test.dependencies] coverage = "^7.1.0" pytest = "7.4.4"