Skip to content

Commit e6a104c

Browse files
authored
feat: Add load_settings to exports (#218)
* fix: Add load_settings to exports * chore: Bump version to 0.28.0
1 parent 05843d9 commit e6a104c

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "c2pa-python"
7-
version = "0.27.1"
7+
version = "0.28.0"
88
requires-python = ">=3.10"
99
description = "Python bindings for the C2PA Content Authenticity Initiative (CAI) library"
1010
readme = { file = "README.md", content-type = "text/markdown" }

src/c2pa/__init__.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
Signer,
2727
Stream,
2828
sdk_version,
29-
read_ingredient_file
29+
read_ingredient_file,
30+
load_settings
3031
) # NOQA
3132

3233
# Re-export C2paError and its subclasses
@@ -39,5 +40,6 @@
3940
'Signer',
4041
'Stream',
4142
'sdk_version',
42-
'read_ingredient_file'
43+
'read_ingredient_file',
44+
'load_settings'
4345
]

0 commit comments

Comments
 (0)