From 4fe1b455c36a330c4be418d15632c7ff34214fc7 Mon Sep 17 00:00:00 2001 From: Kodi Arfer Date: Sun, 22 Sep 2024 09:47:13 -0400 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 10fd305..30c91b9 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setuptools.setup( name = 'simalq', - version = '0.0.0', + version = '1.0.2', 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 f779a38..04a06f8 100644 --- a/simalq/__init__.py +++ b/simalq/__init__.py @@ -1,5 +1,5 @@ import hy -__version__ = 'unreleased' +__version__ = '1.0.2' version_string = f"Infinitesimal Quest 2 + ε version {__version__}"