Skip to content

Commit

Permalink
Updated version number for 2.0.0-beta.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
EGJ-Moorington committed Aug 19, 2024
1 parent 8c13ec8 commit ba700c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion button_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def ticks_ms() -> int:
except ImportError:
pass

__version__ = "2.0.0"
__version__ = "2.0.0-beta.1"
__repo__ = "https://github.com/EGJ-Moorington/CircuitPython_Button_Handler.git"

_TICKS_PERIOD = 1 << 29
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
# built documents.
#
# The short X.Y version.
version = __version__.rsplit(".", 1)[0]
version = __version__.split("-")[0].rsplit(".", 1)[0]
# The full version, including alpha/beta/rc tags.
release = __version__

Expand Down

0 comments on commit ba700c9

Please sign in to comment.