Bump version for Python release

This commit is contained in:
Anthony MOI
2020-03-27 09:17:35 -04:00
parent 8783bd1023
commit e8aec7a624
5 changed files with 5 additions and 5 deletions

View File

@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.7.0-rc1]
## [0.7.0-rc2]
### Changed
- Only one progress bar while reading files during training. This is better for use-cases with

View File

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

View File

@@ -1,6 +1,6 @@
[package]
name = "tokenizers-python"
version = "0.7.0-rc1"
version = "0.7.0-rc2"
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.7.0-rc1",
version="0.7.0-rc2",
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.7.0-rc1"
__version__ = "0.7.0-rc2"
from typing import Tuple