Skip to content

Commit ab6b356

Browse files
chore(release): cut the v1.0.0-alpha.30 release
1 parent 31a2b75 commit ab6b356

File tree

12 files changed

+59
-45
lines changed

12 files changed

+59
-45
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
<!-- version list -->
44

5+
## v1.0.0-alpha.30 (2025-12-09)
6+
7+
### Chores
8+
9+
- Add initial CLAUDE.md file ([#174](https://github.com/jentic/jentic-openapi-tools/pull/174),
10+
[`2d97e9e`](https://github.com/jentic/jentic-openapi-tools/commit/2d97e9e89a81227dcae19da1671446650d36f533))
11+
12+
### Features
13+
14+
- **traverse**: Expose method on NodePath returning list of paths
15+
([#175](https://github.com/jentic/jentic-openapi-tools/pull/175),
16+
[`31a2b75`](https://github.com/jentic/jentic-openapi-tools/commit/31a2b7529d518ab29e0b152263c9d8928b553649))
17+
18+
519
## v1.0.0-alpha.29 (2025-12-01)
620

721
### Bug Fixes

packages/jentic-openapi-common/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "jentic-openapi-common"
3-
version = "1.0.0-alpha.29"
3+
version = "1.0.0-alpha.30"
44
description = "Jentic OpenAPI Common"
55
readme = "README.md"
66
authors = [{ name = "Jentic", email = "hello@jentic.com" }]

packages/jentic-openapi-datamodels/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "jentic-openapi-datamodels"
3-
version = "1.0.0-alpha.29"
3+
version = "1.0.0-alpha.30"
44
description = "Jentic OpenAPI Data Models"
55
readme = "README.md"
66
authors = [{ name = "Jentic", email = "hello@jentic.com" }]

packages/jentic-openapi-parser/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "jentic-openapi-parser"
3-
version = "1.0.0-alpha.29"
3+
version = "1.0.0-alpha.30"
44
description = "Jentic OpenAPI Parser"
55
readme = "README.md"
66
authors = [{ name = "Jentic", email = "hello@jentic.com" }]
@@ -9,8 +9,8 @@ license-files = ["LICENSE", "NOTICE"]
99
requires-python = ">=3.11"
1010
dependencies = [
1111
"attrs~=25.4.0",
12-
"jentic-openapi-common~=1.0.0-alpha.29",
13-
"jentic-openapi-datamodels~=1.0.0-alpha.29",
12+
"jentic-openapi-common~=1.0.0-alpha.30",
13+
"jentic-openapi-datamodels~=1.0.0-alpha.30",
1414
"pyyaml~=6.0.3",
1515
"requests~=2.32.5",
1616
"ruamel-yaml~=0.18.15"

packages/jentic-openapi-transformer-redocly/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[project]
22
name = "jentic-openapi-transformer-redocly"
3-
version = "1.0.0-alpha.29"
3+
version = "1.0.0-alpha.30"
44
description = "Jentic OpenAPI Redocly Transformer Backend"
55
readme = "README.md"
66
authors = [{ name = "Jentic", email = "hello@jentic.com" }]
77
license = "Apache-2.0"
88
license-files = ["LICENSE", "NOTICE"]
99
requires-python = ">=3.11"
1010
dependencies = [
11-
"jentic-openapi-common~=1.0.0-alpha.29",
12-
"jentic-openapi-transformer~=1.0.0-alpha.29"
11+
"jentic-openapi-common~=1.0.0-alpha.30",
12+
"jentic-openapi-transformer~=1.0.0-alpha.30"
1313
]
1414

1515
[project.urls]

packages/jentic-openapi-transformer/pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[project]
22
name = "jentic-openapi-transformer"
3-
version = "1.0.0-alpha.29"
3+
version = "1.0.0-alpha.30"
44
description = "Jentic OpenAPI Transformer"
55
readme = "README.md"
66
authors = [{ name = "Jentic", email = "hello@jentic.com" }]
77
license = "Apache-2.0"
88
license-files = ["LICENSE", "NOTICE"]
99
requires-python = ">=3.11"
1010
dependencies = [
11-
"jentic-openapi-common~=1.0.0-alpha.29",
12-
"jentic-openapi-parser~=1.0.0-alpha.29",
13-
"jentic-openapi-traverse~=1.0.0-alpha.29",
11+
"jentic-openapi-common~=1.0.0-alpha.30",
12+
"jentic-openapi-parser~=1.0.0-alpha.30",
13+
"jentic-openapi-traverse~=1.0.0-alpha.30",
1414
]
1515

1616
[tool.uv]
@@ -22,7 +22,7 @@ module-name = "jentic.apitools.openapi.transformer"
2222
module-root = "src/"
2323

2424
[project.optional-dependencies]
25-
redocly = ["jentic-openapi-transformer-redocly~=1.0.0-alpha.29"]
25+
redocly = ["jentic-openapi-transformer-redocly~=1.0.0-alpha.30"]
2626

2727
[project.urls]
2828
Homepage = "https://github.com/jentic/jentic-openapi-tools"

packages/jentic-openapi-traverse/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[project]
22
name = "jentic-openapi-traverse"
3-
version = "1.0.0-alpha.29"
3+
version = "1.0.0-alpha.30"
44
description = "Jentic OpenAPI Traversal Utilities"
55
readme = "README.md"
66
authors = [{ name = "Jentic", email = "hello@jentic.com" }]
77
license = "Apache-2.0"
88
license-files = ["LICENSE", "NOTICE"]
99
requires-python = ">=3.11"
1010
dependencies = [
11-
"jentic-openapi-datamodels~=1.0.0-alpha.29",
11+
"jentic-openapi-datamodels~=1.0.0-alpha.30",
1212
"jsonpointer~=3.0.0"
1313
]
1414

packages/jentic-openapi-validator-redocly/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[project]
22
name = "jentic-openapi-validator-redocly"
3-
version = "1.0.0-alpha.29"
3+
version = "1.0.0-alpha.30"
44
description = "Jentic OpenAPI Redocly Validator Backend"
55
readme = "README.md"
66
authors = [{ name = "Jentic", email = "hello@jentic.com" }]
77
license = "Apache-2.0"
88
license-files = ["LICENSE", "NOTICE"]
99
requires-python = ">=3.11"
1010
dependencies = [
11-
"jentic-openapi-common~=1.0.0-alpha.29",
12-
"jentic-openapi-validator~=1.0.0-alpha.29",
11+
"jentic-openapi-common~=1.0.0-alpha.30",
12+
"jentic-openapi-validator~=1.0.0-alpha.30",
1313
"lsprotocol~=2025.0.0",
1414
"jsonpointer~=3.0.0"
1515
]

packages/jentic-openapi-validator-spectral/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[project]
22
name = "jentic-openapi-validator-spectral"
3-
version = "1.0.0-alpha.29"
3+
version = "1.0.0-alpha.30"
44
description = "Jentic OpenAPI Spectral Validator Backend"
55
readme = "README.md"
66
authors = [{ name = "Jentic", email = "hello@jentic.com" }]
77
license = "Apache-2.0"
88
license-files = ["LICENSE", "NOTICE"]
99
requires-python = ">=3.11"
1010
dependencies = [
11-
"jentic-openapi-common~=1.0.0-alpha.29",
12-
"jentic-openapi-validator~=1.0.0-alpha.29",
11+
"jentic-openapi-common~=1.0.0-alpha.30",
12+
"jentic-openapi-validator~=1.0.0-alpha.30",
1313
"lsprotocol~=2025.0.0"
1414
]
1515

packages/jentic-openapi-validator/pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
[project]
22
name = "jentic-openapi-validator"
3-
version = "1.0.0-alpha.29"
3+
version = "1.0.0-alpha.30"
44
description = "Jentic OpenAPI Validator"
55
readme = "README.md"
66
authors = [{ name = "Jentic", email = "hello@jentic.com" }]
77
license = "Apache-2.0"
88
license-files = ["LICENSE", "NOTICE"]
99
requires-python = ">=3.11"
1010
dependencies = [
11-
"jentic-openapi-parser~=1.0.0-alpha.29",
11+
"jentic-openapi-parser~=1.0.0-alpha.30",
1212
"openapi-spec-validator~=0.7.2",
1313
"lsprotocol~=2025.0.0"
1414
]
1515

1616
[project.optional-dependencies]
17-
spectral = ["jentic-openapi-validator-spectral~=1.0.0-alpha.29"]
18-
redocly = ["jentic-openapi-validator-redocly~=1.0.0-alpha.29"]
17+
spectral = ["jentic-openapi-validator-spectral~=1.0.0-alpha.30"]
18+
redocly = ["jentic-openapi-validator-redocly~=1.0.0-alpha.30"]
1919

2020
[project.urls]
2121
Homepage = "https://github.com/jentic/jentic-openapi-tools"

0 commit comments

Comments
 (0)