From 0bc2ef3dcbd14b2fc17c73641729d1f6f110f68f Mon Sep 17 00:00:00 2001 From: Kodi Arfer Date: Fri, 1 Mar 2024 16:47:38 -0500 Subject: [PATCH] Set versioning for the new release. --- setup.py | 2 +- simalq/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 015ebd9..34c4ecb 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setuptools.setup( name = 'simalq', - version = '0.0.0', + version = '1.0.0', author = 'Kodi B. Arfer', description = 'Infinitesimal Quest 2 + ε: A turn-based puzzling dungeon crawler', long_description = Path('README.rst').read_text(), diff --git a/simalq/__init__.py b/simalq/__init__.py index 3273b14..1b6b6a1 100644 --- a/simalq/__init__.py +++ b/simalq/__init__.py @@ -1,5 +1,5 @@ import hy -__version__ = '(unreleased)' +__version__ = '1.0.0' version_string = f"Infinitesimal Quest 2 + ε version {__version__}"