Skip to content

Commit 9eefba6

Browse files
committed
Updated description
1 parent 2d40c38 commit 9eefba6

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ All notable changes to `semchunk` will be documented here. This project adheres
44
## [3.0.0] - 2024-12-31
55
### Changed
66
- Began removing chunks comprised entirely of whitespace characters from the output of `chunk()`.
7+
- Updated `semchunk`'s description from 'A fast and lightweight Python library for splitting text into semantically meaningful chunks.' and 'A fast, lightweight and easy-to-use Python library for splitting text into semantically meaningful chunks.'.
78

89
### Added
910
- Added an `offsets` argument to `chunk()` and `Chunker.__call__()` that specifies whether to return the start and end offsets of each chunk ([#9](https://github.com/umarbutler/semchunk/issues/9)). The argument defaults to `False`.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ version = "3.0.0"
88
authors = [
99
{name="Umar Butler", email="[email protected]"},
1010
]
11-
description = "A fast and lightweight Python library for splitting text into semantically meaningful chunks."
11+
description = "A fast, lightweight and easy-to-use Python library for splitting text into semantically meaningful chunks."
1212
readme = "README.md"
1313
requires-python = ">=3.9"
1414
license = {text="MIT"}

src/semchunk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
"""A fast and lightweight Python library for splitting text into semantically meaningful chunks."""
1+
"""A fast, lightweight and easy-to-use Python library for splitting text into semantically meaningful chunks."""
22

33
from .semchunk import chunk, Chunker, chunkerify

0 commit comments

Comments
 (0)