Skip to content

Commit

Permalink
Bump to 3.0.0.dev0 for development
Browse files Browse the repository at this point in the history
  • Loading branch information
misl6 committed Jan 5, 2024
1 parent 9ef2180 commit 78ce9ad
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions kivy/_version.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# This file is imported from __init__.py and exec'd from setup.py

MAJOR = 2
MINOR = 3
MAJOR = 3
MINOR = 0
MICRO = 0
RELEASE = True
RELEASE = False

__version__ = '%d.%d.%d' % (MAJOR, MINOR, MICRO)

if not RELEASE:
# if it's a rcx release, it's not proceeded by a period. If it is a
# devx release, it must start with a period
__version__ += ''
__version__ += '.dev0'


_kivy_git_hash = ''
Expand Down

0 comments on commit 78ce9ad

Please sign in to comment.