Skip to content

Commit

Permalink
Prepare 9.3 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
skoolkid committed Aug 10, 2024
1 parent 7e36b3f commit 170d8b4
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 14 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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)
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
skoolkit (9.3-1) unstable; urgency=medium

* Updated to 9.3.

-- Richard Dymond <rjdymond@gmail.com> Sat, 10 Aug 2024 09:03:26 -0300

skoolkit (9.2-1) unstable; urgency=medium

* Updated to 9.2.
Expand Down
9 changes: 5 additions & 4 deletions long_description.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,20 +33,21 @@ 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
* use trace.py_ to trace the execution of machine code in a snapshot or raw
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
Expand Down
5 changes: 4 additions & 1 deletion rpm/skoolkit.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: skoolkit
Version: 9.2
Version: 9.3
Release: 1
Summary: Tools for creating disassemblies of ZX Spectrum programs

Expand Down Expand Up @@ -43,6 +43,9 @@ cp -a examples %{buildroot}%{_datadir}/%{name}
%{python3_sitearch}/skoolkit-%{version}*.egg-info/

%changelog
* Sat Aug 10 2024 Richard Dymond <rjdymond@gmail.com> 9.3-1
- Updated to 9.3

* Sat May 11 2024 Richard Dymond <rjdymond@gmail.com> 9.2-1
- Updated to 9.2

Expand Down
2 changes: 1 addition & 1 deletion skoolkit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion skoolkit/sna2skool.py
Original file line number Diff line number Diff line change
@@ -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.
#
Expand Down
4 changes: 2 additions & 2 deletions sphinx/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion sphinx/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 170d8b4

Please sign in to comment.