Python - Bump version for release

This commit is contained in:
Anthony MOI
2020-02-11 08:15:11 -05:00
parent 08ce105195
commit bbbd97c7e1
4 changed files with 4 additions and 4 deletions

View File

@ -572,7 +572,7 @@ dependencies = [
[[package]]
name = "tokenizers-python"
version = "0.4.1"
version = "0.4.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.4.1"
version = "0.4.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.4.1",
version="0.4.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.4.1"
__version__ = "0.4.2"
from .tokenizers import Tokenizer, Encoding
from .tokenizers import decoders