Bump python version for release

This commit is contained in:
Anthony MOI
2020-01-10 13:49:26 -05:00
parent 613a25f7b3
commit dd569020c1
4 changed files with 6 additions and 6 deletions

View File

@ -555,7 +555,7 @@ dependencies = [
[[package]]
name = "tokenizers"
version = "0.0.13"
version = "0.6.0"
dependencies = [
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
"indicatif 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)",
@ -571,10 +571,10 @@ dependencies = [
[[package]]
name = "tokenizers-python"
version = "0.0.13"
version = "0.1.0"
dependencies = [
"pyo3 0.8.4 (registry+https://github.com/rust-lang/crates.io-index)",
"tokenizers 0.0.13",
"tokenizers 0.6.0",
]
[[package]]

View File

@ -1,6 +1,6 @@
[package]
name = "tokenizers-python"
version = "0.0.13"
version = "0.1.0"
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.0.13",
version="0.1.0",
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.0.13"
__version__ = "0.1.0"
from .tokenizers import Tokenizer, Encoding
from .tokenizers import decoders