Skip to content

Commit 6ff7c78

Browse files
committed
fix: bump version
1 parent c51ca63 commit 6ff7c78

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

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.10.0"
7+
version = "0.10.1"
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" }

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def find_available_platforms():
158158
print("No platform-specific libraries found. Building wheel without platform-specific libraries.")
159159
setup(
160160
name="c2pa-python",
161-
version="0.10.0",
161+
version="0.10.1",
162162
package_dir={"": "src"},
163163
packages=find_packages(where="src"),
164164
include_package_data=True,
@@ -190,7 +190,7 @@ def find_available_platforms():
190190
# Build the wheel
191191
setup(
192192
name="c2pa-python",
193-
version="0.10.0",
193+
version="0.10.1",
194194
package_dir={"": "src"},
195195
packages=find_packages(where="src"),
196196
include_package_data=True,
@@ -215,7 +215,7 @@ def find_available_platforms():
215215
# For sdist and development installation
216216
setup(
217217
name="c2pa-python",
218-
version="0.10.0",
218+
version="0.10.1",
219219
package_dir={"": "src"},
220220
packages=find_packages(where="src"),
221221
include_package_data=True,

src/c2pa/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.10.0"
1+
__version__ = "0.10.1"
22

33
from .c2pa import (
44
Builder,

tests/_test_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def getitem(d, key):
6363

6464
class TestC2paSdk(unittest.TestCase):
6565
def test_version(self):
66-
assert version() == "0.10.0"
66+
assert version() == "0.10.1"
6767

6868
def test_sdk_version(self):
6969
assert "c2pa-rs/" in sdk_version()

0 commit comments

Comments
 (0)