Skip to content

Commit cb1ddda

Browse files
committedApr 24, 2024
2.5.0.dev2
1 parent 0209311 commit cb1ddda

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
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.5.0'
5151
# The full version, including alpha/beta/rc tags.
52-
release = '2.5.0.dev1'
52+
release = '2.5.0.dev2'
5353

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

‎pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pygame-ce"
3-
version = "2.5.0.dev1"
3+
version = "2.5.0.dev2"
44
description = "Python Game Development"
55
readme = "README.rst" # for long description
66
requires-python = ">=3.8"

‎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.5.0.dev1",
19+
"version": "2.5.0.dev2",
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 0
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 ".dev2"
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.