Bump version to 12.1 (#3463)

This commit is contained in:
zhexu14 2024-11-16 11:58:14 +11:00 committed by GitHub
parent 9d774c8976
commit c3d4ddae44
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -31,7 +31,7 @@ body:
If the bug was found in a development build, select "Development build"
and provide a link to the build in the field below.
options:
- 11.1.1
- 12.0.1
- Development build
- type: textarea
attributes:

View File

@ -39,7 +39,7 @@ body:
If the bug was found in a development build, select "Development build"
and provide a link to the build in the field below.
options:
- 11.1.1
- 12.0.1
- Development build
- type: textarea
attributes:

View File

@ -2,7 +2,7 @@ from pathlib import Path
MAJOR_VERSION = 12
MINOR_VERSION = 0
MINOR_VERSION = 1
MICRO_VERSION = 0
VERSION_NUMBER = ".".join(str(v) for v in (MAJOR_VERSION, MINOR_VERSION, MICRO_VERSION))