Skip to content

Commit a05be6b

Browse files
authored
Merge pull request #1205 from huggingface/new_version
New version 0.13.3
2 parents 3aaf494 + 1cb44bd commit a05be6b

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

bindings/node/native/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "node"
3-
version = "0.13.2"
3+
version = "0.13.3"
44
authors = ["Anthony MOI <m.anthony.moi@gmail.com>"]
55
license = "Apache-2.0"
66
build = "build.rs"

bindings/node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tokenizers",
3-
"version": "0.13.2",
3+
"version": "0.13.3",
44
"description": "",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",

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.13.2"
3+
version = "0.13.3"
44
authors = ["Anthony MOI <m.anthony.moi@gmail.com>"]
55
edition = "2021"
66

bindings/python/py_src/tokenizers/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.13.2"
1+
__version__ = "0.13.3.rc1"
22

33
from enum import Enum
44
from typing import List, Tuple, Union

bindings/python/setup.py

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

1010
setup(
1111
name="tokenizers",
12-
version="0.13.2",
12+
version="0.13.3rc1",
1313
description="Fast and Customizable Tokenizers",
1414
long_description=open("README.md", "r", encoding="utf-8").read(),
1515
long_description_content_type="text/markdown",

tokenizers/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
authors = ["Anthony MOI <m.anthony.moi@gmail.com>", "Nicolas Patry <patry.nicolas@protonmail.com>"]
33
edition = "2018"
44
name = "tokenizers"
5-
version = "0.13.2"
5+
version = "0.13.3"
66
homepage = "https://github.com/huggingface/tokenizers"
77
repository = "https://github.com/huggingface/tokenizers"
88
documentation = "https://docs.rs/tokenizers/"

0 commit comments

Comments
 (0)