Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
9 changes: 8 additions & 1 deletion .release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,14 @@
"package-name": "otdf-python",
"extra-files": [
"pyproject.toml",
"src/otdf_python/cli.py",
{
"path": "src/otdf_python/cli.py",
"type": "python"
},
{
"path": "otdf-python-proto/src/otdf_python_proto/__init__.py",
"type": "python"
},
{
"path": "uv.lock",
"type": "toml",
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.3.0"
__version__ = "0.3.1"

# Import submodules to make them available
from . import authorization
Expand Down
2 changes: 1 addition & 1 deletion src/otdf_python/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from otdf_python.tdf import TDFReaderConfig

# Version - get from project metadata
__version__ = "0.3.0"
__version__ = "0.3.1"


# Set up logging
Expand Down
Loading