Skip to content

Commit 6f4416c

Browse files
committed
Align package versions
1 parent c208deb commit 6f4416c

8 files changed

Lines changed: 28 additions & 28 deletions

File tree

json-tstring/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[project]
22
name = "json-tstring"
3-
version = "0.2.2"
3+
version = "0.3.0"
44
description = "JSON renderer for t-string structured data templates"
55
readme = "README.md"
66
license = { text = "MIT" }
77
authors = [{ name = "Koudai Aono", email = "koxudaxi@gmail.com" }]
88
maintainers = [{ name = "Koudai Aono", email = "koxudaxi@gmail.com" }]
99
requires-python = ">=3.14"
1010
dependencies = [
11-
"tstring-bindings>=0.2.2",
12-
"tstring-core>=0.2.2",
11+
"tstring-bindings>=0.3.0",
12+
"tstring-core>=0.3.0",
1313
]
1414
keywords = ["pep750", "t-strings", "json", "template-strings", "structured-data"]
1515
classifiers = [

pyproject.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[project]
22
name = "tstring-structured-data-workspace"
3-
version = "0.2.2"
3+
version = "0.3.0"
44
description = "Workspace for parser-first JSON, TOML, and YAML PEP 750 t-string backends"
55
readme = "README.md"
66
requires-python = ">=3.14"
77
dependencies = [
8-
"json-tstring>=0.2.2",
9-
"toml-tstring>=0.2.2",
10-
"tstring-core>=0.2.2",
11-
"yaml-tstring>=0.2.2",
8+
"json-tstring>=0.3.0",
9+
"toml-tstring>=0.3.0",
10+
"tstring-core>=0.3.0",
11+
"yaml-tstring>=0.3.0",
1212
]
1313

1414
[build-system]
@@ -18,14 +18,14 @@ build-backend = "uv_build"
1818
[dependency-groups]
1919
dev = [
2020
"inline-snapshot>=0.32.5",
21-
"json-tstring>=0.2.2",
21+
"json-tstring>=0.3.0",
2222
"maturin>=1.8.0",
2323
"pytest>=8.4.0",
2424
"ruff>=0.11.0",
25-
"toml-tstring>=0.2.2",
26-
"tstring-core>=0.2.2",
25+
"toml-tstring>=0.3.0",
26+
"tstring-core>=0.3.0",
2727
"ty>=0.0.23",
28-
"yaml-tstring>=0.2.2",
28+
"yaml-tstring>=0.3.0",
2929
]
3030
docs = [
3131
"zensical>=0.0.15",

rust/python-bindings/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "tstring-bindings"
3-
version = "0.2.2"
3+
version = "0.3.0"
44
description = "Native Python bindings for t-string structured data backends"
55
readme = "README.md"
66
license = { text = "MIT" }

rust/python-bindings/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ fn normalized_offset_to_python(py: Python<'_>, offset_minutes: i16) -> PyResult<
627627

628628
#[pymodule]
629629
fn tstring_bindings(py: Python<'_>, module: &Bound<'_, PyModule>) -> PyResult<()> {
630-
module.add("__version__", "0.2.2")?;
630+
module.add("__version__", "0.3.0")?;
631631
module.add("__contract_version__", CONTRACT_VERSION)?;
632632
module.add("__contract_symbols__", PyTuple::new(py, CONTRACT_SYMBOLS)?)?;
633633
module.add("TemplateError", py.get_type::<TemplateError>())?;

toml-tstring/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[project]
22
name = "toml-tstring"
3-
version = "0.2.2"
3+
version = "0.3.0"
44
description = "TOML renderer for t-string structured data templates"
55
readme = "README.md"
66
license = { text = "MIT" }
77
authors = [{ name = "Koudai Aono", email = "koxudaxi@gmail.com" }]
88
maintainers = [{ name = "Koudai Aono", email = "koxudaxi@gmail.com" }]
99
requires-python = ">=3.14"
1010
dependencies = [
11-
"tstring-bindings>=0.2.2",
12-
"tstring-core>=0.2.2",
11+
"tstring-bindings>=0.3.0",
12+
"tstring-core>=0.3.0",
1313
]
1414
keywords = ["pep750", "t-strings", "toml", "template-strings", "structured-data"]
1515
classifiers = [

tstring-core/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[project]
22
name = "tstring-core"
3-
version = "0.2.2"
3+
version = "0.3.0"
44
description = "Shared runtime primitives for PEP 750 structural template renderers"
55
readme = "README.md"
66
license = { text = "MIT" }
77
authors = [{ name = "Koudai Aono", email = "koxudaxi@gmail.com" }]
88
maintainers = [{ name = "Koudai Aono", email = "koxudaxi@gmail.com" }]
99
requires-python = ">=3.14"
10-
dependencies = ["tstring-bindings>=0.2.2"]
10+
dependencies = ["tstring-bindings>=0.3.0"]
1111
keywords = ["pep750", "t-strings", "template-strings", "runtime", "structured-data"]
1212
classifiers = [
1313
"Development Status :: 4 - Beta",

uv.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

yaml-tstring/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[project]
22
name = "yaml-tstring"
3-
version = "0.2.2"
3+
version = "0.3.0"
44
description = "YAML renderer for t-string structured data templates"
55
readme = "README.md"
66
license = { text = "MIT" }
77
authors = [{ name = "Koudai Aono", email = "koxudaxi@gmail.com" }]
88
maintainers = [{ name = "Koudai Aono", email = "koxudaxi@gmail.com" }]
99
requires-python = ">=3.14"
1010
dependencies = [
11-
"tstring-bindings>=0.2.2",
12-
"tstring-core>=0.2.2",
11+
"tstring-bindings>=0.3.0",
12+
"tstring-core>=0.3.0",
1313
]
1414
keywords = ["pep750", "t-strings", "yaml", "template-strings", "structured-data"]
1515
classifiers = [

0 commit comments

Comments
 (0)