Skip to content

Commit f71ad73

Browse files
committed
update version control module
1 parent 19a6567 commit f71ad73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/_version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
from typing import NamedTuple, Optional
3838

3939
# Core version information - UPDATE THIS FOR NEW RELEASES
40-
__version_info__ = (0, 8, 0) # (major, minor, patch)
40+
__version_info__ = (1, 0, 0) # (major, minor, patch)
4141
__prerelease__ = None
4242
__prerelease_num__ = None
4343
__build__ = None # Build metadata (optional)
@@ -98,7 +98,7 @@ def _is_development_version() -> bool:
9898
return __prerelease__ is not None or _get_git_version() is not None
9999

100100
# Public API - Static version for build tools
101-
__version__ = "0.8.0" # Updated by version manager
101+
__version__ = "1.0.0" # Updated by version manager
102102
__version_info_tuple__ = VersionInfo(
103103
major=__version_info__[0],
104104
minor=__version_info__[1],

0 commit comments

Comments
 (0)