Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.18.7
current_version = 1.19.0

[bumpversion:file:src/zxbc/version.py]
search = VERSION: Final[str] = "{current_version}"
Expand Down
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
[v1.19.0](https://github.com/boriel-basic/zxbasic/tree/v1.19.0)
===
+ Add zx81sd architecture: a new backend targeting the ZX81 + SD81 Booster hardware (by @wilco2000)
+ Add Play library for AY/Next sound effects and music playback
+ Refact: port the parser to Lark
+ Merge maskedsprites library (by @ConradoBadenas)
+ Upgrade to Python 3.14+
+ ! Fix crash on undeclared substring assignment
+ ! Fix array element access by reference
+ ! Fix wrong sigil allowed
+ ! Fix zxbasm options
+ ! Fix bxor16 with 0xFFFF being wrongly optimized
+ ! Fix dummy `ld hl, 0` inserted in Fastcall String functions
+ ! Fix LBOUND/UBOUND initialization for local arrays
+ ! Fix bug in type conversion
+ ! Fix missing parse rule in the assembler
+ Various internal refactors, typing improvements and documentation updates

[v1.18.7](https://github.com/boriel-basic/zxbasic/tree/v1.18.7)
===
+ ! Fix a bug with Fixed point numbers conversion to Long
Expand Down
12 changes: 6 additions & 6 deletions docs/archive.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,28 +10,28 @@ repository (git).
You can contribute to ZX BASIC by reporting possible bugs or improvement suggestions at the
[forum](https://forum.boriel.com/) or in social media.

The latest stable version is <span style={{color: "green"}}>**1.18.7**</span>.
The latest stable version is <span style={{color: "green"}}>**1.19.0**</span>.
Click on the desired icon below to download the package suitable for your platform:

* [<img src="https://zxbasic.readthedocs.io/en/docs/img/win32.png" alt="win32zip" width="32px"/>
https://www.boriel.com/files/zxb/zxbasic-1.18.7-win32.zip](https://www.boriel.com/files/zxb/zxbasic-1.18.7-win32.zip)
https://www.boriel.com/files/zxb/zxbasic-1.19.0-win32.zip](https://www.boriel.com/files/zxb/zxbasic-1.19.0-win32.zip)
<br />Windows .exe zip package. No install needed, just uncompress it in a directory of your choice.
<br/>&nbsp;
* [<img src="https://zxbasic.readthedocs.io/en/docs/img/macos.png" alt="macostargz" width="32px"/>
https://www.boriel.com/files/zxb/zxbasic-1.18.7-macos.tar.gz](https://www.boriel.com/files/zxb/zxbasic-1.18.7-macos.tar.gz)
https://www.boriel.com/files/zxb/zxbasic-1.19.0-macos.tar.gz](https://www.boriel.com/files/zxb/zxbasic-1.19.0-macos.tar.gz)
<br />Mac OS x64 package. No install needed, just uncompress it in a directory of your choice (needs Python installed
in your system).
<br/>&nbsp;
* [<img src="https://zxbasic.readthedocs.io/en/docs/img/linux.png" alt="macostargz" width="32px"/>
https://www.boriel.com/files/zxb/zxbasic-1.18.7-linux64.tar.gz](https://www.boriel.com/files/zxb/zxbasic-1.18.7-linux64.tar.gz)
https://www.boriel.com/files/zxb/zxbasic-1.19.0-linux64.tar.gz](https://www.boriel.com/files/zxb/zxbasic-1.19.0-linux64.tar.gz)
<br />Linux x64 binary package. No install needed, just uncompress it in a directory of your choice.
<br/>&nbsp;
* [<img src="https://zxbasic.readthedocs.io/en/docs/img/zip-package.png" alt="zip" width="32px"/>
https://www.boriel.com/files/zxb/zxbasic-1.18.7.zip](https://www.boriel.com/files/zxb/zxbasic-1.18.7.zip)
https://www.boriel.com/files/zxb/zxbasic-1.19.0.zip](https://www.boriel.com/files/zxb/zxbasic-1.19.0.zip)
<br />Windows, Linux, Mac zip package, with python scripts. Requires python installed in your system.
<br/>&nbsp;
* [<img src="https://zxbasic.readthedocs.io/en/docs/img/driver-down.png" alt="tar.gz" width="32px"/>
https://www.boriel.com/files/zxb/zxbasic-1.18.7.tar.gz](https://www.boriel.com/files/zxb/zxbasic-1.18.7.tar.gz)
https://www.boriel.com/files/zxb/zxbasic-1.19.0.tar.gz](https://www.boriel.com/files/zxb/zxbasic-1.19.0.tar.gz)
<br />Windows, Linux, Mac tar.gz package, with python scripts. Requires python installed in your system.

### What's new
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "zxbasic"
version = "1.18.7"
version = "1.19.0"
description = "Boriel's ZX BASIC Compiler"
authors = [
{ name = "Jose Rodriguez", email = "zxbasic@boriel.com" }
Expand Down
2 changes: 1 addition & 1 deletion src/zxbasm/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# See https://www.gnu.org/licenses/agpl-3.0.html for details.
# --------------------------------------------------------------------

VERSION = "1.18.7"
VERSION = "1.19.0"
2 changes: 1 addition & 1 deletion src/zxbc/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@

from typing import Final

VERSION: Final[str] = "1.18.7"
VERSION: Final[str] = "1.19.0"
Loading