Skip to content

Commit 28f42c9

Browse files
authored
Merge pull request #2408 from oddbookworm/2.3.2.dev1
start 2.3.2.dev1
2 parents 7bd60a6 + 1f39350 commit 28f42c9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
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.3.1'
50+
version = '2.3.2'
5151
# The full version, including alpha/beta/rc tags.
52-
release = '2.3.1'
52+
release = '2.3.2.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.3.1",
19+
"version": "2.3.2.dev1",
2020
"license": "LGPL",
2121
"url": "https://pyga.me",
2222
"author": "A community project.",

src_c/include/_pygame.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
/* version macros (defined since version 1.9.5) */
5858
#define PG_MAJOR_VERSION 2
5959
#define PG_MINOR_VERSION 3
60-
#define PG_PATCH_VERSION 1
60+
#define PG_PATCH_VERSION 2
6161
#define PG_VERSIONNUM(MAJOR, MINOR, PATCH) \
6262
(1000 * (MAJOR) + 100 * (MINOR) + (PATCH))
6363
#define PG_VERSION_ATLEAST(MAJOR, MINOR, PATCH) \

0 commit comments

Comments
 (0)