Skip to content
Open
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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "c2pa-python"
version = "0.27.1"
version = "0.28.0"
requires-python = ">=3.10"
description = "Python bindings for the C2PA Content Authenticity Initiative (CAI) library"
readme = { file = "README.md", content-type = "text/markdown" }
Expand Down
6 changes: 4 additions & 2 deletions src/c2pa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
Signer,
Stream,
sdk_version,
read_ingredient_file
read_ingredient_file,
load_settings
) # NOQA

# Re-export C2paError and its subclasses
Expand All @@ -39,5 +40,6 @@
'Signer',
'Stream',
'sdk_version',
'read_ingredient_file'
'read_ingredient_file',
'load_settings'
]
Loading