Skip to content

Commit

Permalink
Merge pull request #2810 from pygame/v2.0.3
Browse files Browse the repository at this point in the history
2.0.3
  • Loading branch information
illume committed Oct 31, 2021
2 parents 6462672 + f5b72d6 commit 14fbf61
Show file tree
Hide file tree
Showing 3 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 @@ -50,7 +50,7 @@
# The short X.Y version.
version = '2.0.3'
# The full version, including alpha/beta/rc tags.
release = '2.0.3.dev6'
release = '2.1.0.dev1'

# Format strings for the version directives
versionadded_format = 'New in pygame %s'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

METADATA = {
"name": "pygame",
"version": "2.0.3.dev6",
"version": "2.1.0.dev1",
"license": "LGPL",
"url": "https://www.pygame.org",
"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 @@ -57,8 +57,8 @@

/* version macros (defined since version 1.9.5) */
#define PG_MAJOR_VERSION 2
#define PG_MINOR_VERSION 0
#define PG_PATCH_VERSION 3
#define PG_MINOR_VERSION 1
#define PG_PATCH_VERSION 0
#define PG_VERSIONNUM(MAJOR, MINOR, PATCH) (1000*(MAJOR) + 100*(MINOR) + (PATCH))
#define PG_VERSION_ATLEAST(MAJOR, MINOR, PATCH) \
(PG_VERSIONNUM(PG_MAJOR_VERSION, PG_MINOR_VERSION, PG_PATCH_VERSION) >= \
Expand Down

0 comments on commit 14fbf61

Please sign in to comment.