Skip to content

Commit 9e8b0bb

Browse files
committed
oops: version no not bumped in Utilities.js
1 parent bf431d3 commit 9e8b0bb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

html5/js/Utilities.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*/
99

1010
const Utilities = {
11-
VERSION: "13",
11+
VERSION: "14",
1212
REVISION : 0,
1313
LOCAL_MODIFICATIONS: 0,
1414
BRANCH: "v14.x",

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ def set_version(new_version: str) -> None:
404404
"%define release .*": f"%define release 1.r{revision}%{{?dist}}",
405405
},
406406
"./html5/js/Utilities.js": {
407-
fr'VERSION\s*= "{VERSION}"': f'VERSION = "{new_version}"',
407+
fr'VERSION\s*: "{VERSION}"': f'VERSION = "{new_version}"',
408408
fr"REVISION\s*: [0-9]*": f"REVISION : {revision}",
409409
r'LOCAL_MODIFICATIONS\s*: [0-9]*': f'LOCAL_MODIFICATIONS: {local_modifications}',
410410
r'BRANCH\s*: "[a-zA-Z]*"': f'BRANCH: "{branch}"',

0 commit comments

Comments
 (0)