From 565038a0ea7545e4c44d19c2c2a37e072c8616cd Mon Sep 17 00:00:00 2001 From: Kodi Arfer Date: Mon, 20 May 2024 17:32:19 -0400 Subject: [PATCH] Set versioning for the new release. --- README.rst | 1 + setup.py | 2 +- simalq/__init__.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 942c23c..b60fb3b 100644 --- a/README.rst +++ b/README.rst @@ -78,6 +78,7 @@ Version history This section lists the most important user-visible changes in each release. Typically, saved games for each version *aren't* compatible with other versions, but release numbers marked with an asterisk (*) should be compatible with saved games from the previous release. Unless making a backward-compatible upgrade of this kind, you should delete all your saved games before upgrading the game. +- 1.0.1* (2024-05-20): Largely internal changes. - 1.0.0 (2024-03-01): Various improvements to the display. - 0.6.0 (2024-02-19): The IQ quest BoneQuest is now fully playable. - 0.5.0 (2024-01-10): Largely internal changes. The new script ``util/gate_map.hy`` may be useful for mapping mazes of teleportation gates, such as New Nightmare level 10. diff --git a/setup.py b/setup.py index bc09332..304ab0e 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setuptools.setup( name = 'simalq', - version = '0.0.0', + version = '1.0.1', 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..1cad779 100644 --- a/simalq/__init__.py +++ b/simalq/__init__.py @@ -1,5 +1,5 @@ import hy -__version__ = '(unreleased)' +__version__ = '1.0.1' version_string = f"Infinitesimal Quest 2 + ε version {__version__}"