Skip to content

Commit 0ff9293

Browse files
authored
Merge pull request #2631 from Starbuck5/start-2.5
Start 2.5.0
2 parents ff970cd + a7d62f7 commit 0ff9293

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/reST/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@
4747
# built documents.
4848
#
4949
# The short X.Y version.
50-
version = '2.4.0'
50+
version = '2.5.0'
5151
# The full version, including alpha/beta/rc tags.
52-
release = '2.4.0.dev5'
52+
release = '2.5.0.dev1'
5353

5454
# Format strings for the version directives
5555
versionadded_format = 'New in pygame-ce %s'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
METADATA = {
1818
"name": "pygame-ce",
19-
"version": "2.4.0.dev5",
19+
"version": "2.5.0.dev1",
2020
"license": "LGPL",
2121
"url": "https://pyga.me",
2222
"author": "A community project.",

src_c/include/_pygame.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@
5656

5757
/* version macros (defined since version 1.9.5) */
5858
#define PG_MAJOR_VERSION 2
59-
#define PG_MINOR_VERSION 4
59+
#define PG_MINOR_VERSION 5
6060
#define PG_PATCH_VERSION 0
6161
/* The below is of the form ".devX" for dev releases, and "" (empty) for full
6262
* releases */
63-
#define PG_VERSION_TAG ".dev5"
63+
#define PG_VERSION_TAG ".dev1"
6464
#define PG_VERSIONNUM(MAJOR, MINOR, PATCH) \
6565
(1000 * (MAJOR) + 100 * (MINOR) + (PATCH))
6666
#define PG_VERSION_ATLEAST(MAJOR, MINOR, PATCH) \

0 commit comments

Comments
 (0)