Skip to content

Commit

Permalink
Merge pull request pygame-community#2631 from Starbuck5/start-2.5
Browse files Browse the repository at this point in the history
Start 2.5.0
  • Loading branch information
ankith26 authored Dec 25, 2023
2 parents ff970cd + a7d62f7 commit 0ff9293
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
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

0 comments on commit 0ff9293

Please sign in to comment.