Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions .release-please-config.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,25 @@
{
"release-type": "python",
"include-v-in-tag": true,
"prerelease-type": "alpha",
"packages": {
".": {
"release-type": "python",
"package-name": "otdf-python",
"extra-files": [
"pyproject.toml",
"uv.lock",
"src/otdf_python/cli.py",
"tests/test_cli.py"
"tests/test_cli.py",
"RELEASES.md"
]
},
"otdf-python-proto": {
"release-type": "python",
"package-name": "otdf-python-proto"
"package-name": "otdf-python-proto",
"extra-files": [
"otdf-python-proto/pyproject.toml"
]
}
},
"changelog-sections": [
Expand All @@ -28,4 +35,4 @@
{ "type": "build", "section": "Build System", "hidden": false },
{ "type": "ci", "section": "Continuous Integration", "hidden": true }
]
}
}
4 changes: 2 additions & 2 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
".": "0.3.0a9",
"otdf-python-proto": "0.3.0a9"
".": "0.3.0",
"otdf-python-proto": "0.3.0"
}
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog

## [0.3.0](https://github.com/b-long/opentdf-python-sdk/compare/otdf-python-v0.3.0...otdf-python-v0.3.0) (2025-09-05)


### Features

* configure release-please ([#74](https://github.com/b-long/opentdf-python-sdk/issues/74)) ([439becd](https://github.com/b-long/opentdf-python-sdk/commit/439becd82a5faf834a190516b64e21aa331c0176))
* Update to latest SDK ([#73](https://github.com/b-long/opentdf-python-sdk/issues/73)) ([9c0329e](https://github.com/b-long/opentdf-python-sdk/commit/9c0329ec76d4dea53ac66b5342d3cce6ec249d58))


### Miscellaneous Chores

* release 0.3.0a10 ([c278b29](https://github.com/b-long/opentdf-python-sdk/commit/c278b2997e7843a31f62bac30ee4eae27a93bc75))
8 changes: 8 additions & 0 deletions otdf-python-proto/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## [0.3.0](https://github.com/b-long/opentdf-python-sdk/compare/otdf-python-proto-v0.3.0...otdf-python-proto-v0.3.0) (2025-09-05)


### Miscellaneous Chores

* release 0.3.0a10 ([c278b29](https://github.com/b-long/opentdf-python-sdk/commit/c278b2997e7843a31f62bac30ee4eae27a93bc75))
2 changes: 1 addition & 1 deletion otdf-python-proto/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "otdf-python-proto"
version = "0.3.0a9"
version = "0.3.0"
description = "Generated protobuf files for OpenTDF Python SDK"
readme = "README.md"
authors = [
Expand Down
2 changes: 1 addition & 1 deletion otdf-python-proto/src/otdf_python_proto/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
and other OpenTDF services.
"""

__version__ = "0.1.0"
__version__ = "0.3.0"

# Import submodules to make them available
from . import authorization
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "otdf-python"
version = "0.3.0a9"
version = "0.3.0"
description = "Unofficial OpenTDF SDK for Python"
readme = "README.md"
authors = [
Expand Down