Skip to content

Commit

Permalink
oops: version no not bumped in Utilities.js
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Jul 8, 2024
1 parent bf431d3 commit 9e8b0bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion html5/js/Utilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*/

const Utilities = {
VERSION: "13",
VERSION: "14",
REVISION : 0,
LOCAL_MODIFICATIONS: 0,
BRANCH: "v14.x",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ def set_version(new_version: str) -> None:
"%define release .*": f"%define release 1.r{revision}%{{?dist}}",
},
"./html5/js/Utilities.js": {
fr'VERSION\s*= "{VERSION}"': f'VERSION = "{new_version}"',
fr'VERSION\s*: "{VERSION}"': f'VERSION = "{new_version}"',
fr"REVISION\s*: [0-9]*": f"REVISION : {revision}",
r'LOCAL_MODIFICATIONS\s*: [0-9]*': f'LOCAL_MODIFICATIONS: {local_modifications}',
r'BRANCH\s*: "[a-zA-Z]*"': f'BRANCH: "{branch}"',
Expand Down

0 comments on commit 9e8b0bb

Please sign in to comment.