Skip to content

Commit

Permalink
Update version 0.2.0 for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
DailyDreaming committed May 13, 2024
1 parent ac5f9ec commit fd8a6c4
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions src/braingeneers/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,16 @@
__version__ = version = '0.2.0.dev0'
__version_tuple__ = version_tuple = (0, 2, 0, 'dev0')
# file generated by setuptools_scm
# don't change, don't track in version control
TYPE_CHECKING = False
if TYPE_CHECKING:
from typing import Tuple, Union
VERSION_TUPLE = Tuple[Union[int, str], ...]
else:
VERSION_TUPLE = object

version: str
__version__: str
__version_tuple__: VERSION_TUPLE
version_tuple: VERSION_TUPLE

__version__ = version = '0.2.0'
__version_tuple__ = version_tuple = (0, 2, 0)

0 comments on commit fd8a6c4

Please sign in to comment.