Skip to content

Commit

Permalink
ci: fix version numbering
Browse files Browse the repository at this point in the history
  • Loading branch information
HKuz committed Oct 17, 2024
1 parent 5f30745 commit c06f6c2
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ repos:
- tomli

- repo: https://github.com/agritheory/test_utils
rev: v0.15.0
rev: v0.16.0
hooks:
- id: update_pre_commit_config
- id: validate_copyright
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
<!-- Copyright (c) 2024, AgriTheory and contributors
For license information, please see license.txt-->

# CHANGELOG

## v14.7.2 (2024-08-20)
## v15.7.2 (2024-08-20)

### Fix

Expand Down
5 changes: 4 additions & 1 deletion cloud_storage/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
__version__ = "14.7.0"
# Copyright (c) 2024, AgriTheory and contributors
# For license information, please see license.txt

__version__ = "15.7.2"


import frappe.desk.form.load
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cloud_storage"
version = "14.7.2"
version = "15.7.2"
description = "Frappe App for integrating with cloud storage applications"
authors = ["AgriTheory <[email protected]>"]
readme = "README.md"
Expand Down Expand Up @@ -40,6 +40,9 @@ indent = "\t"

[tool.semantic_release]
version_toml = ["pyproject.toml:tool.poetry.version"]
version_variable = [
"cloud_storage/__init__.py:__version__"
]

[tool.semantic_release.branches.version]
match = "version-15"

0 comments on commit c06f6c2

Please sign in to comment.