Skip to content

Commit

Permalink
2.1.1.dev2
Browse files Browse the repository at this point in the history
  • Loading branch information
illume committed Dec 24, 2021
1 parent e4420d3 commit 6f474f6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/reST/conf.py
Expand Up @@ -48,9 +48,9 @@
# built documents.
#
# The short X.Y version.
version = '2.1.1'
version = '2.1.2'
# The full version, including alpha/beta/rc tags.
release = '2.1.1'
release = '2.1.2.dev1'

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

METADATA = {
"name": "pygame",
"version": "2.1.1",
"version": "2.1.2.dev1",
"license": "LGPL",
"url": "https://www.pygame.org",
"author": "A community project.",
Expand Down
2 changes: 1 addition & 1 deletion src_c/include/_pygame.h
Expand Up @@ -57,7 +57,7 @@
/* version macros (defined since version 1.9.5) */
#define PG_MAJOR_VERSION 2
#define PG_MINOR_VERSION 1
#define PG_PATCH_VERSION 1
#define PG_PATCH_VERSION 2
#define PG_VERSIONNUM(MAJOR, MINOR, PATCH) \
(1000 * (MAJOR) + 100 * (MINOR) + (PATCH))
#define PG_VERSION_ATLEAST(MAJOR, MINOR, PATCH) \
Expand Down

0 comments on commit 6f474f6

Please sign in to comment.