Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Adyen/settings.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
LIB_NAME = "adyen-python-api-library"
LIB_VERSION = "15.0.0"
LIB_VERSION = "15.0.1"
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
15.0.0
15.0.1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
setup(
name="Adyen",
packages=find_packages(include=["Adyen*"], exclude=["tests", "tests.*"]),
version="15.0.0",
version="15.0.1",
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

The version is being updated here to 15.0.1, but it's inconsistent with pyproject.toml, which specifies version = "14.0.0". This file seems to have been missed in the previous release as well.

This inconsistency can lead to incorrect package metadata and build issues, as different tools might read the version from different files. Please update the version in pyproject.toml to 15.0.1.

For better long-term maintainability, I recommend consolidating the version number into a single source of truth. The VERSION file is a good candidate. You can configure setup.py and pyproject.toml to read the version from this file, which would prevent future inconsistencies.

maintainer="Adyen",
maintainer_email="support@adyen.com",
description="Adyen Python Api",
Expand Down
Loading