From fb292d1eaea96d8d0bc54d2607d910a755dd35a3 Mon Sep 17 00:00:00 2001 From: Nicolas Patry Date: Mon, 14 Aug 2023 12:06:43 +0200 Subject: [PATCH] 0.13.4.rc1 (#1319) --- CITATION.cff | 2 +- bindings/node/native/Cargo.toml | 2 +- bindings/node/package.json | 2 +- bindings/python/Cargo.toml | 2 +- bindings/python/py_src/tokenizers/__init__.py | 2 +- bindings/python/setup.py | 2 +- tokenizers/Cargo.toml | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index d7883ad0..953fd453 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -27,5 +27,5 @@ keywords: - NLP license: Apache-2.0 commit: 37372b6 -version: 0.13.3 +version: 0.13.4 date-released: '2023-04-05' diff --git a/bindings/node/native/Cargo.toml b/bindings/node/native/Cargo.toml index b8492ba7..d2c47451 100644 --- a/bindings/node/native/Cargo.toml +++ b/bindings/node/native/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "node" -version = "0.13.3" +version = "0.13.4" authors = ["Anthony MOI "] license = "Apache-2.0" build = "build.rs" diff --git a/bindings/node/package.json b/bindings/node/package.json index 19d92ac3..5431c3e1 100644 --- a/bindings/node/package.json +++ b/bindings/node/package.json @@ -1,6 +1,6 @@ { "name": "tokenizers", - "version": "0.13.3", + "version": "0.13.4", "description": "", "main": "./dist/index.js", "types": "./dist/index.d.ts", diff --git a/bindings/python/Cargo.toml b/bindings/python/Cargo.toml index 0a594a84..fcd15d28 100644 --- a/bindings/python/Cargo.toml +++ b/bindings/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tokenizers-python" -version = "0.13.3" +version = "0.13.4" authors = ["Anthony MOI "] edition = "2021" diff --git a/bindings/python/py_src/tokenizers/__init__.py b/bindings/python/py_src/tokenizers/__init__.py index eb48271b..745a6a4c 100644 --- a/bindings/python/py_src/tokenizers/__init__.py +++ b/bindings/python/py_src/tokenizers/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.13.3" +__version__ = "0.13.4.rc1" from enum import Enum from typing import List, Tuple, Union diff --git a/bindings/python/setup.py b/bindings/python/setup.py index 7d56f434..4f270415 100644 --- a/bindings/python/setup.py +++ b/bindings/python/setup.py @@ -9,7 +9,7 @@ extras["dev"] = extras["testing"] setup( name="tokenizers", - version="0.13.3", + version="0.13.4.rc1", description="Fast and Customizable Tokenizers", long_description=open("README.md", "r", encoding="utf-8").read(), long_description_content_type="text/markdown", diff --git a/tokenizers/Cargo.toml b/tokenizers/Cargo.toml index 3035bcaa..18dc0dcb 100644 --- a/tokenizers/Cargo.toml +++ b/tokenizers/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Anthony MOI ", "Nicolas Patry "] edition = "2018" name = "tokenizers" -version = "0.13.3" +version = "0.13.4" homepage = "https://github.com/huggingface/tokenizers" repository = "https://github.com/huggingface/tokenizers" documentation = "https://docs.rs/tokenizers/"