Python - Bump version for release

This commit is contained in:
Anthony MOI
2020-02-24 16:08:49 -05:00
parent 2ae306250a
commit 440e8e9bd9
5 changed files with 11 additions and 4 deletions

View File

@@ -1,3 +1,10 @@
# v0.5.2
## Fixes:
- We introduced a bug related to the saving of the WordPiece model in 0.5.2: The `vocab.txt` file was named
`vocab.json`. This is now fixed.
- The `WordLevel` model was also saving its vocabulary to the wrong format.
# v0.5.1
## Changes:

View File

@@ -572,7 +572,7 @@ dependencies = [
[[package]]
name = "tokenizers-python"
version = "0.5.1"
version = "0.5.2"
dependencies = [
"pyo3 0.8.4 (registry+https://github.com/rust-lang/crates.io-index)",
"tokenizers 0.7.0",

View File

@@ -1,6 +1,6 @@
[package]
name = "tokenizers-python"
version = "0.5.1"
version = "0.5.2"
authors = ["Anthony MOI <m.anthony.moi@gmail.com>"]
edition = "2018"

View File

@@ -3,7 +3,7 @@ from setuptools_rust import Binding, RustExtension
setup(
name="tokenizers",
version="0.5.1",
version="0.5.2",
description="Fast and Customizable Tokenizers",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",

View File

@@ -1,4 +1,4 @@
__version__ = "0.5.1"
__version__ = "0.5.2"
from .tokenizers import Tokenizer, Encoding
from .tokenizers import decoders