diff --git a/bindings/python/CHANGELOG.md b/bindings/python/CHANGELOG.md index 3487abcf..0e0f24eb 100644 --- a/bindings/python/CHANGELOG.md +++ b/bindings/python/CHANGELOG.md @@ -3,6 +3,7 @@ Fixes: - Some default tokens were missing from `BertWordPieceTokenizer` (cf [#160](https://github.com/huggingface/tokenizers/issues/160)) # v0.5.2 +- Do not open all files directly while training ([#163](https://github.com/huggingface/tokenizers/issues/163)) ## Fixes: - We introduced a bug related to the saving of the WordPiece model in 0.5.2: The `vocab.txt` file was named diff --git a/tokenizers/CHANGELOG.md b/tokenizers/CHANGELOG.md new file mode 100644 index 00000000..982c4e43 --- /dev/null +++ b/tokenizers/CHANGELOG.md @@ -0,0 +1,4 @@ +# v0.8.0 (not released yet) + +## Fixes: +- Do not open all files directly while training ([#163](https://github.com/huggingface/tokenizers/issues/163))