Skip to content

Commit

Permalink
2.5.0.dev2
Browse files Browse the repository at this point in the history
  • Loading branch information
Starbuck5 committed Apr 24, 2024
1 parent 0209311 commit cb1ddda
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/reST/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
# The short X.Y version.
version = '2.5.0'
# The full version, including alpha/beta/rc tags.
release = '2.5.0.dev1'
release = '2.5.0.dev2'

# Format strings for the version directives
versionadded_format = 'New in pygame-ce %s'
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pygame-ce"
version = "2.5.0.dev1"
version = "2.5.0.dev2"
description = "Python Game Development"
readme = "README.rst" # for long description
requires-python = ">=3.8"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

METADATA = {
"name": "pygame-ce",
"version": "2.5.0.dev1",
"version": "2.5.0.dev2",
"license": "LGPL",
"url": "https://pyga.me",
"author": "A community project.",
Expand Down
2 changes: 1 addition & 1 deletion src_c/include/_pygame.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
#define PG_PATCH_VERSION 0
/* The below is of the form ".devX" for dev releases, and "" (empty) for full
* releases */
#define PG_VERSION_TAG ".dev1"
#define PG_VERSION_TAG ".dev2"
#define PG_VERSIONNUM(MAJOR, MINOR, PATCH) \
(1000 * (MAJOR) + 100 * (MINOR) + (PATCH))
#define PG_VERSION_ATLEAST(MAJOR, MINOR, PATCH) \
Expand Down

0 comments on commit cb1ddda

Please sign in to comment.