Skip to content

Commit

Permalink
Bump version to 2.3.1.dev0 (kivy#8927)
Browse files Browse the repository at this point in the history
  • Loading branch information
misl6 authored Nov 16, 2024
1 parent 430715f commit e9c662a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions kivy/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

MAJOR = 2
MINOR = 3
MICRO = 0
RELEASE = True
MICRO = 1
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 e9c662a

Please sign in to comment.