diff --git a/README.md b/README.md index c7b255f6..04a20d59 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ With SkoolKit you can: * use [skool2bin.py](https://skoolkid.github.io/skoolkit/commands.html#skool2bin-py) to convert a disassembly into a raw memory file * use [tap2sna.py](https://skoolkid.github.io/skoolkit/commands.html#tap2sna-py) - to convert a TAP or TZX file into a 'pristine' Z80 or SZX snapshot + to convert a PZX, TAP or TZX file into a 'pristine' Z80 or SZX snapshot * use [snapinfo.py](https://skoolkid.github.io/skoolkit/commands.html#snapinfo-py) to analyse a snapshot or raw memory file and list the BASIC program it contains, show register values, produce a call graph, find tile graphic data, @@ -64,12 +64,12 @@ With SkoolKit you can: execution map for [sna2ctl.py](https://skoolkid.github.io/skoolkit/commands.html#sna2ctl-py) * use [tapinfo.py](https://skoolkid.github.io/skoolkit/commands.html#tapinfo-py) - to analyse the blocks in a TAP or TZX file, and list the BASIC program it - contains + to analyse the blocks in a PZX, TAP or TZX file, and list the BASIC program + it contains * use [rzxinfo.py](https://skoolkid.github.io/skoolkit/commands.html#rzxinfo-py) to analyse the blocks in an RZX file, and extract snapshots from it * use [bin2tap.py](https://skoolkid.github.io/skoolkit/commands.html#bin2tap-py) - to convert a snapshot or raw memory file into a TAP file + to convert a snapshot or raw memory file into a PZX or TAP file * use [bin2sna.py](https://skoolkid.github.io/skoolkit/commands.html#bin2sna-py) to convert a raw memory file into a Z80 or SZX snapshot * use [snapmod.py](https://skoolkid.github.io/skoolkit/commands.html#snapmod-py) diff --git a/debian/changelog b/debian/changelog index 9ec5c78f..318465af 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +skoolkit (9.3-1) unstable; urgency=medium + + * Updated to 9.3. + + -- Richard Dymond Sat, 10 Aug 2024 09:03:26 -0300 + skoolkit (9.2-1) unstable; urgency=medium * Updated to 9.2. diff --git a/long_description.rst b/long_description.rst index 2159c506..780ad413 100644 --- a/long_description.rst +++ b/long_description.rst @@ -33,8 +33,8 @@ With SkoolKit you can: * use skool2ctl.py_ to convert a disassembly back into a control file (with annotations retained) * use skool2bin.py_ to convert a disassembly into a raw memory file -* use tap2sna.py_ to convert a TAP or TZX file into a 'pristine' Z80 or SZX - snapshot +* use tap2sna.py_ to convert a PZX, TAP or TZX file into a 'pristine' Z80 or + SZX snapshot * use snapinfo.py_ to analyse a snapshot or raw memory file and list the BASIC program it contains, show register values, produce a call graph, find tile graphic data, find text, or find sequences of arbitrary byte values @@ -42,11 +42,12 @@ With SkoolKit you can: memory file * use rzxplay.py_ to trace the execution of machine code in an RZX file, and produce a code execution map for sna2ctl.py_ -* use tapinfo.py_ to analyse the blocks in a TAP or TZX file, and list the +* use tapinfo.py_ to analyse the blocks in a PZX, TAP or TZX file, and list the BASIC program it contains * use rzxinfo.py_ to analyse the blocks in an RZX file, and extract snapshots from it -* use bin2tap.py_ to convert a snapshot or raw memory file into a TAP file +* use bin2tap.py_ to convert a snapshot or raw memory file into a PZX or TAP + file * use bin2sna.py_ to convert a raw memory file into a Z80 or SZX snapshot * use snapmod.py_ to modify the register values or memory contents in a Z80 or SZX snapshot diff --git a/rpm/skoolkit.spec b/rpm/skoolkit.spec index 464a7355..06bdb7a2 100644 --- a/rpm/skoolkit.spec +++ b/rpm/skoolkit.spec @@ -1,5 +1,5 @@ Name: skoolkit -Version: 9.2 +Version: 9.3 Release: 1 Summary: Tools for creating disassemblies of ZX Spectrum programs @@ -43,6 +43,9 @@ cp -a examples %{buildroot}%{_datadir}/%{name} %{python3_sitearch}/skoolkit-%{version}*.egg-info/ %changelog +* Sat Aug 10 2024 Richard Dymond 9.3-1 +- Updated to 9.3 + * Sat May 11 2024 Richard Dymond 9.2-1 - Updated to 9.2 diff --git a/skoolkit/__init__.py b/skoolkit/__init__.py index 302a9a93..d7974fba 100644 --- a/skoolkit/__init__.py +++ b/skoolkit/__init__.py @@ -32,7 +32,7 @@ except ImportError: # pragma: no cover CCMIOSimulator = None -VERSION = '9.3rc' +VERSION = '9.3' PACKAGE_DIR = os.path.dirname(__file__) BASE_10 = 10 diff --git a/skoolkit/sna2skool.py b/skoolkit/sna2skool.py index 26d0a0bb..31923910 100644 --- a/skoolkit/sna2skool.py +++ b/skoolkit/sna2skool.py @@ -1,4 +1,4 @@ -# Copyright 2009-2015, 2017-2022 Richard Dymond (rjdymond@gmail.com) +# Copyright 2009-2015, 2017-2022, 2024 Richard Dymond (rjdymond@gmail.com) # # This file is part of SkoolKit. # diff --git a/sphinx/source/changelog.rst b/sphinx/source/changelog.rst index 4ac09fb6..44f0b1e1 100644 --- a/sphinx/source/changelog.rst +++ b/sphinx/source/changelog.rst @@ -1,8 +1,8 @@ Changelog ========= -9.3rc ------ +9.3 (2024-08-10) +---------------- * Added support to :ref:`tapinfo.py` and :ref:`tap2sna.py` for reading PZX files * Added support to :ref:`bin2tap.py` for writing PZX files diff --git a/sphinx/source/conf.py b/sphinx/source/conf.py index 553c9521..fa9735c3 100644 --- a/sphinx/source/conf.py +++ b/sphinx/source/conf.py @@ -48,7 +48,7 @@ # The short X.Y version. version = '9.3' # The full version, including alpha/beta/rc tags. -release = '9.3rc' +release = '9.3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages.