File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " c2pa-python"
7- version = " 0.10.0 "
7+ version = " 0.10.1 "
88requires-python = " >=3.10"
99description = " Python bindings for the C2PA Content Authenticity Initiative (CAI) library"
1010readme = { file = " README.md" , content-type = " text/markdown" }
Original file line number Diff line number Diff 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
216216setup (
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 ,
Original file line number Diff line number Diff line change 1- __version__ = "0.10.0 "
1+ __version__ = "0.10.1 "
22
33from .c2pa import (
44 Builder ,
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ def getitem(d, key):
6363
6464class 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 ()
You can’t perform that action at this time.
0 commit comments