Skip to content

Commit 1c92431

Browse files
committed
feat: deduplicate version and bump to 0.9.1
1 parent 9086144 commit 1c92431

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "toon_format"
3-
version = "0.9.0-beta.1"
3+
dynamic = ["version"]
44
description = "A compact, human-readable serialization format designed for passing structured data to Large Language Models with significantly reduced token usage"
55
readme = "README.md"
66
authors = [
@@ -43,8 +43,12 @@ dev = [
4343
"pytest-cov>=4.1.0",
4444
"ruff>=0.8.0",
4545
"mypy>=1.8.0",
46+
"build",
4647
]
4748

49+
[tool.hatch.version]
50+
path = "src/toon_format/__init__.py"
51+
4852
[tool.pytest.ini_options]
4953
testpaths = ["tests"]
5054
python_files = ["test_*.py"]

src/toon_format/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
from .types import DecodeOptions, Delimiter, DelimiterKey, EncodeOptions
2626
from .utils import compare_formats, count_tokens, estimate_savings
2727

28-
__version__ = "0.9.0-beta.1"
28+
__version__ = "0.9.1"
2929
__all__ = [
3030
"encode",
3131
"decode",

0 commit comments

Comments
 (0)