Skip to content

Commit 3f1420d

Browse files
authored
Merge pull request #2054 from pygame-community/start-2.3
Start 2.3
2 parents 0616e4e + d4d241f commit 3f1420d

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,8 @@ See docs/licenses for licenses of dependencies.
179179

180180
.. |Python3| image:: https://img.shields.io/badge/python-3-blue.svg?v=1
181181

182-
.. |GithubCommits| image:: https://img.shields.io/github/commits-since/pygame-community/pygame-ce/2.1.4.svg
183-
:target: https://github.com/pygame-community/pygame-ce/compare/2.1.4...main
182+
.. |GithubCommits| image:: https://img.shields.io/github/commits-since/pygame-community/pygame-ce/2.2.0.svg
183+
:target: https://github.com/pygame-community/pygame-ce/compare/2.2.0...main
184184

185185
.. |DocsStatus| image:: https://img.shields.io/website?down_message=offline&label=docs&up_message=online&url=https%3A%2F%2Fpyga.me%2Fdocs%2F
186186
:target: https://pyga.me/docs/

docs/reST/conf.py

Lines changed: 2 additions & 2 deletions
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.2.0'
50+
version = '2.3.0'
5151
# The full version, including alpha/beta/rc tags.
52-
release = '2.2.0'
52+
release = '2.3.0.dev1'
5353

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
METADATA = {
1818
"name": "pygame-ce",
19-
"version": "2.2.0",
19+
"version": "2.3.0.dev1",
2020
"license": "LGPL",
2121
"url": "https://pyga.me",
2222
"author": "A community project.",

src_c/include/_pygame.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656

5757
/* version macros (defined since version 1.9.5) */
5858
#define PG_MAJOR_VERSION 2
59-
#define PG_MINOR_VERSION 2
59+
#define PG_MINOR_VERSION 3
6060
#define PG_PATCH_VERSION 0
6161
#define PG_VERSIONNUM(MAJOR, MINOR, PATCH) \
6262
(1000 * (MAJOR) + 100 * (MINOR) + (PATCH))

0 commit comments

Comments
 (0)