From a3eef8e07639e6f1a9dded7d589265d7af7f97a3 Mon Sep 17 00:00:00 2001 From: chonk-lain Date: Thu, 28 May 2026 19:25:01 +0100 Subject: [PATCH] bump version --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- packages/python/Cargo.toml | 2 +- packages/python/pyproject.toml | 2 +- packages/python/python/chonkie_core/__init__.py | 2 +- packages/wasm/Cargo.toml | 2 +- packages/wasm/package.json | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1182fd1..5e04672 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -114,7 +114,7 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" [[package]] name = "chonkie-core-python" -version = "0.10.1" +version = "0.10.2" dependencies = [ "chunk", "numpy", @@ -123,7 +123,7 @@ dependencies = [ [[package]] name = "chonkiejs-chunk" -version = "0.10.1" +version = "0.10.2" dependencies = [ "chunk", "js-sys", @@ -132,7 +132,7 @@ dependencies = [ [[package]] name = "chunk" -version = "0.10.1" +version = "0.10.2" dependencies = [ "criterion", "daggrs", diff --git a/Cargo.toml b/Cargo.toml index ec3a195..0edadb9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "packages/python", "packages/wasm"] [package] name = "chunk" -version = "0.10.1" +version = "0.10.2" edition = "2024" description = "The fastest semantic text chunking library — up to 1TB/s chunking throughput" license = "MIT OR Apache-2.0" diff --git a/packages/python/Cargo.toml b/packages/python/Cargo.toml index 097470d..1a61a59 100644 --- a/packages/python/Cargo.toml +++ b/packages/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chonkie-core-python" -version = "0.10.1" +version = "0.10.2" edition = "2024" license = "MIT OR Apache-2.0" publish = false diff --git a/packages/python/pyproject.toml b/packages/python/pyproject.toml index 4f0b054..0848197 100644 --- a/packages/python/pyproject.toml +++ b/packages/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "chonkie-core" -version = "0.10.1" +version = "0.10.2" description = "The fastest semantic text chunking library" readme = "README_PYPI.md" requires-python = ">=3.9" diff --git a/packages/python/python/chonkie_core/__init__.py b/packages/python/python/chonkie_core/__init__.py index b4bef8c..a47e32f 100644 --- a/packages/python/python/chonkie_core/__init__.py +++ b/packages/python/python/chonkie_core/__init__.py @@ -43,7 +43,7 @@ ] except ImportError: pass -__version__ = "0.10.1" +__version__ = "0.10.2" def chunk(text, *, size=DEFAULT_TARGET_SIZE, delimiters=None, patterns=None): diff --git a/packages/wasm/Cargo.toml b/packages/wasm/Cargo.toml index c692015..7a76a47 100644 --- a/packages/wasm/Cargo.toml +++ b/packages/wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chonkiejs-chunk" -version = "0.10.1" +version = "0.10.2" edition = "2024" license = "MIT OR Apache-2.0" publish = false diff --git a/packages/wasm/package.json b/packages/wasm/package.json index e981b4b..e9918c0 100644 --- a/packages/wasm/package.json +++ b/packages/wasm/package.json @@ -1,6 +1,6 @@ { "name": "@chonkiejs/chunk", - "version": "0.10.1", + "version": "0.10.2", "description": "The fastest semantic text chunking library", "type": "module", "main": "index.js",