Skip to content

Commit 42e5612

Browse files
committedFeb 19, 2024
2.4.1
1 parent 5f5c0d4 commit 42e5612

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎docs/reST/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
# The short X.Y version.
5050
version = '2.4.1'
5151
# The full version, including alpha/beta/rc tags.
52-
release = '2.4.1.dev1'
52+
release = '2.4.1'
5353

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

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

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

‎src_c/include/_pygame.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
#define PG_PATCH_VERSION 1
6161
/* The below is of the form ".devX" for dev releases, and "" (empty) for full
6262
* releases */
63-
#define PG_VERSION_TAG ".dev1"
63+
#define PG_VERSION_TAG ""
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)
Failed to load comments.