Skip to content

Commit

Permalink
fix: Up versions
Browse files Browse the repository at this point in the history
  • Loading branch information
tmathern committed Jan 30, 2025
1 parent 03c1be0 commit 1a681d4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ crate-type = ["lib", "cdylib"]
normal = ["openssl-src"]

[dependencies]
c2pa = { version = "0.44.0", features = ["file_io", "openssl", "pdf", "fetch_remote_manifests"]}
c2pa = { version = "0.45.0", features = ["file_io", "openssl", "pdf", "fetch_remote_manifests"]}
thiserror = "1.0.49"
uniffi = "0.28.2"
openssl-src = "=300.3.1" # Required for openssl-sys
Expand Down
2 changes: 1 addition & 1 deletion tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def getitem(d, key):

class TestC2paSdk(unittest.TestCase):
def test_version(self):
assert version() == "0.6.2"
assert version() == "0.6.3"

def test_sdk_version(self):
assert "c2pa-rs/" in sdk_version()
Expand Down
3 changes: 2 additions & 1 deletion tests/test_unit_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@

class TestC2paSdk(unittest.TestCase):
def test_version(self):
self.assertIn("0.6.2", sdk_version())
print(sdk_version())
self.assertIn("0.6.3", sdk_version())


class TestReader(unittest.TestCase):
Expand Down

0 comments on commit 1a681d4

Please sign in to comment.