3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 49
49
# The short X.Y version.
50
50
version = '2.4.1'
51
51
# The full version, including alpha/beta/rc tags.
52
- release = '2.4.1.dev1 '
52
+ release = '2.4.1'
53
53
54
54
# Format strings for the version directives
55
55
versionadded_format = 'New in pygame-ce %s'
Original file line number Diff line number Diff line change 16
16
17
17
METADATA = {
18
18
"name" : "pygame-ce" ,
19
- "version" : "2.4.1.dev1 " ,
19
+ "version" : "2.4.1" ,
20
20
"license" : "LGPL" ,
21
21
"url" : "https://pyga.me" ,
22
22
"author" : "A community project." ,
Original file line number Diff line number Diff line change 60
60
#define PG_PATCH_VERSION 1
61
61
/* The below is of the form ".devX" for dev releases, and "" (empty) for full
62
62
* releases */
63
- #define PG_VERSION_TAG ".dev1 "
63
+ #define PG_VERSION_TAG ""
64
64
#define PG_VERSIONNUM (MAJOR , MINOR , PATCH ) \
65
65
(1000 * (MAJOR) + 100 * (MINOR) + (PATCH))
66
66
#define PG_VERSION_ATLEAST (MAJOR , MINOR , PATCH ) \
0 commit comments