Skip to content

Commit

Permalink
Merge pull request #6 from PAYONE-GmbH/develop
Browse files Browse the repository at this point in the history
Release 0.0.3
  • Loading branch information
Blackfaded authored Aug 21, 2024
2 parents b7b2157 + b8df13b commit 5e93485
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Empty file.
2 changes: 1 addition & 1 deletion pcp_serversdk_python/utils/ServerMetaInfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ def __init__(self, integrator: str = ""):
self.platformIdentifier = (
f"{platform.system()}, Python version is: {platform.python_version()}"
)
self.sdkIdentifier = "PythonServerSDK/v0.0.2" # Update version as needed
self.sdkIdentifier = "PythonServerSDK/v0.0.3" # Update version as needed
self.sdkCreator = "PAYONE GmbH"
self.integrator = integrator
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name="pcp_serversdk_python",
version="0.0.2",
version="0.0.3",
author="PAYONE-GmbH",
author_email="",
description="",
Expand Down
4 changes: 2 additions & 2 deletions tests/utils/test_ServerMetaInfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def testServerMetaInfoInitialization():
assert meta_info.platformIdentifier == expected_platform_identifier

# Check sdkIdentifier
assert meta_info.sdkIdentifier == "PythonServerSDK/v0.0.2"
assert meta_info.sdkIdentifier == "PythonServerSDK/v0.0.3"

# Check sdkCreator
assert meta_info.sdkCreator == "PAYONE GmbH"
Expand All @@ -33,7 +33,7 @@ def testServerMetaInfoDefaults():
assert meta_info.platformIdentifier == expected_platform_identifier

# Check sdkIdentifier
assert meta_info.sdkIdentifier == "PythonServerSDK/v0.0.2"
assert meta_info.sdkIdentifier == "PythonServerSDK/v0.0.3"

# Check sdkCreator
assert meta_info.sdkCreator == "PAYONE GmbH"
Expand Down

0 comments on commit 5e93485

Please sign in to comment.