diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7949f14eb..b3dd59937 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.18.2 +current_version = 1.18.3 [bumpversion:file:src/zxbc/version.py] search = VERSION: Final[str] = "{current_version}" diff --git a/CHANGELOG.md b/CHANGELOG.md index 81e2d1a79..5e1bcc47a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,15 @@ -[v1.18.2](https://github.com/boriel-basic/zxbasic/tree/v1.18.1) +[v1.18.3](https://github.com/boriel-basic/zxbasic/tree/v1.18.3) +=== ++ ! Fix `ByRef` with an array element ++ ! Fix `@array` label emission in generated code ++ Small optimization for -O2 ++ Add `getPaintData()` and `getChars()` functions to `putchars.bas` lib ++ Refactor: move memory runtime routines to `runtime/mem/` ++ ! Fix linting and update tests suite ++ Documentation fixes and improvements (links, syntax highlighting) ++ License housekeeping: ensure all files use AGPLv3 headers + +[v1.18.2](https://github.com/boriel-basic/zxbasic/tree/v1.18.2) === + ! Allows installation with `pip install` in python 3.11 environments + * Add `hmirror.bas` library diff --git a/docs/archive.md b/docs/archive.md index 429c6d6a3..28f52f5c6 100644 --- a/docs/archive.md +++ b/docs/archive.md @@ -10,28 +10,28 @@ repository (git). You can contribute to ZX BASIC by reporting possible bugs or improvement suggestions at the [forum](http://www.boriel.com/forum) or in social media. -The latest stable version is **1.18.2**. +The latest stable version is **1.18.3**. Click on the desired icon below to download the package suitable for your platform: * [win32zip - https://www.boriel.com/files/zxb/zxbasic-1.18.2-win32.zip](https://www.boriel.com/files/zxb/zxbasic-1.18.2-win32.zip) + https://www.boriel.com/files/zxb/zxbasic-1.18.3-win32.zip](https://www.boriel.com/files/zxb/zxbasic-1.18.3-win32.zip)
Windows .exe zip package. No install needed, just uncompress it in a directory of your choice.
  * [macostargz - https://www.boriel.com/files/zxb/zxbasic-1.18.2-macos.tar.gz](https://www.boriel.com/files/zxb/zxbasic-1.18.2-macos.tar.gz) + https://www.boriel.com/files/zxb/zxbasic-1.18.3-macos.tar.gz](https://www.boriel.com/files/zxb/zxbasic-1.18.3-macos.tar.gz)
Mac OS x64 package. No install needed, just uncompress it in a directory of your choice (needs Python installed in your system).
  * [macostargz - https://www.boriel.com/files/zxb/zxbasic-1.18.2-linux64.tar.gz](https://www.boriel.com/files/zxb/zxbasic-1.18.2-linux64.tar.gz) + https://www.boriel.com/files/zxb/zxbasic-1.18.3-linux64.tar.gz](https://www.boriel.com/files/zxb/zxbasic-1.18.3-linux64.tar.gz)
Linux x64 binary package. No install needed, just uncompress it in a directory of your choice.
  * [zip - https://www.boriel.com/files/zxb/zxbasic-1.18.2.zip](https://www.boriel.com/files/zxb/zxbasic-1.18.2.zip) + https://www.boriel.com/files/zxb/zxbasic-1.18.3.zip](https://www.boriel.com/files/zxb/zxbasic-1.18.3.zip)
Windows, Linux, Mac zip package, with python scripts. Requires python installed in your system.
  * [tar.gz - https://www.boriel.com/files/zxb/zxbasic-1.18.2.tar.gz](https://www.boriel.com/files/zxb/zxbasic-1.18.2.tar.gz) + https://www.boriel.com/files/zxb/zxbasic-1.18.3.tar.gz](https://www.boriel.com/files/zxb/zxbasic-1.18.3.tar.gz)
Windows, Linux, Mac tar.gz package, with python scripts. Requires python installed in your system. ### What's new diff --git a/pyproject.toml b/pyproject.toml index 2a931a4e4..1f9b0d729 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "zxbasic" -version = "1.18.2" +version = "1.18.3" description = "Boriel's ZX BASIC Compiler" authors = ["Jose Rodriguez "] license = "AGPL-3.0-or-later" diff --git a/src/zxbasm/version.py b/src/zxbasm/version.py index a526b3b97..9e545196a 100644 --- a/src/zxbasm/version.py +++ b/src/zxbasm/version.py @@ -5,4 +5,4 @@ # See https://www.gnu.org/licenses/agpl-3.0.html for details. # -------------------------------------------------------------------- -VERSION = "1.18.2" +VERSION = "1.18.3" diff --git a/src/zxbc/version.py b/src/zxbc/version.py index 02f034a7c..1e2e7eef3 100755 --- a/src/zxbc/version.py +++ b/src/zxbc/version.py @@ -7,4 +7,4 @@ from typing import Final -VERSION: Final[str] = "1.18.2" +VERSION: Final[str] = "1.18.3"