Skip to content

Commit 4c9e91f

Browse files
committed
PCI updates will increment the patch version, rather than the minor version. Minor versions will indicate non-breaking code changes, and major versions will indicate breaking code changes
1 parent 19313a5 commit 4c9e91f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/pci-update-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
# Get current version and increment minor version
105105
current_version = config['project']['version']
106106
major, minor, patch = current_version.split('.')
107-
new_version = f"{major}.{int(minor) + 1}.0"
107+
new_version = f"{major}.{minor}.{int(patch) + 1}"
108108
109109
# Update version in config
110110
config['project']['version'] = new_version

0 commit comments

Comments
 (0)