Skip to content

Commit b2af918

Browse files
authored
Merge pull request #50 from koxudaxi/release-version-fix
Align 0.3.1 package versions
2 parents e8d86cb + 03f4f60 commit b2af918

17 files changed

Lines changed: 55 additions & 55 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.3.0"
3+
version = "0.3.1"
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.3.0",
12-
"tstring-core>=0.3.0",
11+
"tstring-bindings>=0.3.1",
12+
"tstring-core>=0.3.1",
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.3.0"
3+
version = "0.3.1"
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.3.0",
9-
"toml-tstring>=0.3.0",
10-
"tstring-core>=0.3.0",
11-
"yaml-tstring>=0.3.0",
8+
"json-tstring>=0.3.1",
9+
"toml-tstring>=0.3.1",
10+
"tstring-core>=0.3.1",
11+
"yaml-tstring>=0.3.1",
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.3.0",
21+
"json-tstring>=0.3.1",
2222
"maturin>=1.8.0",
2323
"pytest>=8.4.0",
2424
"ruff>=0.11.0",
25-
"toml-tstring>=0.3.0",
26-
"tstring-core>=0.3.0",
25+
"toml-tstring>=0.3.1",
26+
"tstring-core>=0.3.1",
2727
"ty>=0.0.23",
28-
"yaml-tstring>=0.3.0",
28+
"yaml-tstring>=0.3.1",
2929
]
3030
docs = [
3131
"zensical>=0.0.15",

rust/Cargo.lock

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

rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ homepage = "https://github.com/koxudaxi/tstring-structured-data"
1818
license = "MIT"
1919
repository = "https://github.com/koxudaxi/tstring-structured-data"
2020
rust-version = "1.94.0"
21-
version = "0.3.0"
21+
version = "0.3.1"
2222

2323
[workspace.dependencies]
2424
num-bigint = "0.4.6"

rust/backend-e2e-tests/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ rust-version.workspace = true
1010
publish = false
1111

1212
[dev-dependencies]
13-
tstring-json = { version = "0.3.0", path = "../json-tstring-rs" }
14-
tstring-syntax = { version = "0.3.0", path = "../tstring-core-rs" }
15-
tstring-toml = { version = "0.3.0", path = "../toml-tstring-rs" }
16-
tstring-yaml = { version = "0.3.0", path = "../yaml-tstring-rs" }
13+
tstring-json = { version = "0.3.1", path = "../json-tstring-rs" }
14+
tstring-syntax = { version = "0.3.1", path = "../tstring-core-rs" }
15+
tstring-toml = { version = "0.3.1", path = "../toml-tstring-rs" }
16+
tstring-yaml = { version = "0.3.1", path = "../yaml-tstring-rs" }

rust/json-tstring-rs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ test = false
1818

1919
[dependencies]
2020
serde_json = { workspace = true }
21-
tstring-syntax = { version = "0.3.0", path = "../tstring-core-rs" }
21+
tstring-syntax = { version = "0.3.1", path = "../tstring-core-rs" }
2222

2323
[dev-dependencies]
2424
toml = { workspace = true }

rust/python-bindings/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ pyo3 = { workspace = true, features = ["abi3-py314"] }
2323
pythonize = { workspace = true }
2424
saphyr = { workspace = true }
2525
serde_json = { workspace = true }
26-
tstring-json = { version = "0.3.0", path = "../json-tstring-rs" }
27-
tstring-pyo3-bindings = { version = "0.3.0", path = "../tstring-pyo3-bindings" }
28-
tstring-syntax = { version = "0.3.0", path = "../tstring-core-rs" }
26+
tstring-json = { version = "0.3.1", path = "../json-tstring-rs" }
27+
tstring-pyo3-bindings = { version = "0.3.1", path = "../tstring-pyo3-bindings" }
28+
tstring-syntax = { version = "0.3.1", path = "../tstring-core-rs" }
2929
toml = { workspace = true }
30-
tstring-toml = { version = "0.3.0", path = "../toml-tstring-rs" }
31-
tstring-yaml = { version = "0.3.0", path = "../yaml-tstring-rs" }
30+
tstring-toml = { version = "0.3.1", path = "../toml-tstring-rs" }
31+
tstring-yaml = { version = "0.3.1", path = "../yaml-tstring-rs" }
3232

3333
[dev-dependencies]
3434
pyo3 = { workspace = true, features = ["auto-initialize"] }

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.3.0"
3+
version = "0.3.1"
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.3.0")?;
630+
module.add("__version__", "0.3.1")?;
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>())?;

rust/toml-tstring-rs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ test = false
1919
[dependencies]
2020
serde_json = { workspace = true }
2121
toml = { workspace = true }
22-
tstring-syntax = { version = "0.3.0", path = "../tstring-core-rs" }
22+
tstring-syntax = { version = "0.3.1", path = "../tstring-core-rs" }

0 commit comments

Comments
 (0)