Skip to content

Commit 5e45f19

Browse files
committed
2.6.1.dev1
1 parent 9e6b2a7 commit 5e45f19

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

docs/es/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@
4747
# built documents.
4848
#
4949
# The short X.Y version.
50-
version = '2.6.0'
50+
version = '2.6.1'
5151
# The full version, including alpha/beta/rc tags.
52-
release = '2.6.0'
52+
release = '2.6.1.dev1'
5353

5454
# Format strings for the version directives
5555
versionadded_format = 'New in pygame %s'

docs/reST/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@
4747
# built documents.
4848
#
4949
# The short X.Y version.
50-
version = '2.6.0'
50+
version = '2.6.1'
5151
# The full version, including alpha/beta/rc tags.
52-
release = '2.6.0'
52+
release = '2.6.1.dev1'
5353

5454
# Format strings for the version directives
5555
versionadded_format = 'New in pygame %s'

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
METADATA = {
2222
"name": "pygame",
23-
"version": "2.6.0",
23+
"version": "2.6.1.dev1",
2424
"license": "LGPL",
2525
"url": "https://www.pygame.org",
2626
"author": "A community project.",

src_c/include/_pygame.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
/* version macros (defined since version 1.9.5) */
5858
#define PG_MAJOR_VERSION 2
5959
#define PG_MINOR_VERSION 6
60-
#define PG_PATCH_VERSION 0
60+
#define PG_PATCH_VERSION 1
6161
#define PG_VERSIONNUM(MAJOR, MINOR, PATCH) \
6262
(1000 * (MAJOR) + 100 * (MINOR) + (PATCH))
6363
#define PG_VERSION_ATLEAST(MAJOR, MINOR, PATCH) \

0 commit comments

Comments
 (0)