Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Start 2.5.0 #2631

Merged
merged 1 commit into from
Dec 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/reST/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@
# built documents.
#
# The short X.Y version.
version = '2.4.0'
version = '2.5.0'
# The full version, including alpha/beta/rc tags.
release = '2.4.0.dev5'
release = '2.5.0.dev1'

# Format strings for the version directives
versionadded_format = 'New in pygame-ce %s'
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.4.0.dev5",
"version": "2.5.0.dev1",
"license": "LGPL",
"url": "https://pyga.me",
"author": "A community project.",
Expand Down
4 changes: 2 additions & 2 deletions src_c/include/_pygame.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@

/* version macros (defined since version 1.9.5) */
#define PG_MAJOR_VERSION 2
#define PG_MINOR_VERSION 4
#define PG_MINOR_VERSION 5
#define PG_PATCH_VERSION 0
/* The below is of the form ".devX" for dev releases, and "" (empty) for full
* releases */
#define PG_VERSION_TAG ".dev5"
#define PG_VERSION_TAG ".dev1"
#define PG_VERSIONNUM(MAJOR, MINOR, PATCH) \
(1000 * (MAJOR) + 100 * (MINOR) + (PATCH))
#define PG_VERSION_ATLEAST(MAJOR, MINOR, PATCH) \
Expand Down
Loading