diff --git a/CHANGELOG.md b/CHANGELOG.md index d3f1f21..21b2087 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## v0.8.1 + +### What's New + +- Updates to documentation and examples. +- Update pyo3 to 0.21.0 in Python package, which should bring some performance improvements. + ## v0.8.0 ### What's New diff --git a/Cargo.lock b/Cargo.lock index e71dbae..2ddd97a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1187,7 +1187,7 @@ dependencies = [ [[package]] name = "semantic-text-splitter" -version = "0.8.0" +version = "0.8.1" dependencies = [ "pyo3", "text-splitter", @@ -1320,7 +1320,7 @@ dependencies = [ [[package]] name = "text-splitter" -version = "0.8.0" +version = "0.8.1" dependencies = [ "ahash", "auto_enums", diff --git a/Cargo.toml b/Cargo.toml index e11f074..cec7d04 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,10 +2,10 @@ members = ["bindings/*"] [workspace.package] -version = "0.8.0" +version = "0.8.1" authors = ["Ben Brandt "] edition = "2021" -description = "Split text into semantic chunks, up to a desired chunk size. Supports calculating length by characters and tokens (when used with large language models)." +description = "Split text into semantic chunks, up to a desired chunk size. Supports calculating length by characters and tokens, and is callable from Rust and Python." repository = "https://github.com/benbrandt/text-splitter" license = "MIT" keywords = ["text", "split", "tokenizer", "nlp", "ai"]