Skip to content

Commit 670f619

Browse files
committed
Python - bump to 0.7.0 for final release
1 parent 5be775d commit 670f619

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

bindings/python/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [0.7.0-rc7]
7+
## [0.7.0]
88

99
### Changed
1010
- Only one progress bar while reading files during training. This is better for use-cases with

bindings/python/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindings/python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tokenizers-python"
3-
version = "0.7.0-rc7"
3+
version = "0.7.0"
44
authors = ["Anthony MOI <m.anthony.moi@gmail.com>"]
55
edition = "2018"
66

bindings/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name="tokenizers",
9-
version="0.7.0rc7",
9+
version="0.7.0",
1010
description="Fast and Customizable Tokenizers",
1111
long_description=open("README.md", "r", encoding="utf-8").read(),
1212
long_description_content_type="text/markdown",

bindings/python/tokenizers/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.7.0rc7"
1+
__version__ = "0.7.0"
22

33
from typing import Tuple
44

0 commit comments

Comments
 (0)