From 1f71db896327e2366c434d6985966f71eb2d3d3d Mon Sep 17 00:00:00 2001 From: Jose Rodriguez Date: Tue, 1 Aug 2023 23:28:40 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.16.4=20=E2=86=92=201.17.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- Changelog.md | 17 +++++++++++++++++ docs/archive.md | 12 ++++++------ pyproject.toml | 2 +- setup.py | 2 +- src/zxbasm/version.py | 2 +- src/zxbc/version.py | 2 +- 7 files changed, 28 insertions(+), 11 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index fb6e88014..f8df60233 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.16.4 +current_version = 1.17.0 [bumpversion:file:src/zxbc/version.py] search = VERSION = "{current_version}" diff --git a/Changelog.md b/Changelog.md index c60fde4ba..f8b1c172c 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,20 @@ +[v1.17.0](https://github.com/boriel/zxbasic/tree/v1.16.4) +=== ++ ! Fixed some bugs and improved stability ++ ! Fixed and improved the peep hole optimizer ++ Compiling speed increased ++ Fixes bug with SAVE and USR ++ Internal code refacts ++ All routines using the screen (PLOT, DRAW, PRINT, SCROLL...)
+ now use the screen back buffer! So you can draw in other address of RAM. ++ Requires Python 3.10+ ++ Allow setting the HEAP address with --heap-address=0xNNNN ++ Fixes bugs with zxbpp (preprocessor) and zxbasm (assembler) ++ Updated documentation and README.md (thx to @Chronomantic) ++ Add PutChars() library function ++ Add ClearBox() library function ++ Add PutTile() library function + [v1.16.4](https://github.com/boriel/zxbasic/tree/v1.16.4) === + ! Fixed some bugs and improved stability diff --git a/docs/archive.md b/docs/archive.md index a8b863553..0eae69902 100644 --- a/docs/archive.md +++ b/docs/archive.md @@ -10,27 +10,27 @@ 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. -Latest stable version is **1.16.4**. +Latest stable version is **1.17.0**. Click on the desired icon below to download the package suitable for your platform: * [win32zip - http://www.boriel.com/files/zxb/zxbasic-1.16.4-win32.zip](http://www.boriel.com/files/zxb/zxbasic-1.16.4-win32.zip) + http://www.boriel.com/files/zxb/zxbasic-1.17.0-win32.zip](http://www.boriel.com/files/zxb/zxbasic-1.17.0-win32.zip)
Windows .exe zip package. No install needed, just uncompress it in a directory of your choice.
  * [macostargz - http://www.boriel.com/files/zxb/zxbasic-1.16.4-macos.tar.gz](http://www.boriel.com/files/zxb/zxbasic-1.16.4-macos.tar.gz) + http://www.boriel.com/files/zxb/zxbasic-1.17.0-macos.tar.gz](http://www.boriel.com/files/zxb/zxbasic-1.17.0-macos.tar.gz)
Mac OS x64 binary package. No install needed, just uncompress it in a directory of your choice.
  * [macostargz - http://www.boriel.com/files/zxb/zxbasic-1.16.4-linux64.tar.gz](http://www.boriel.com/files/zxb/zxbasic-1.16.4-linux64.tar.gz) + http://www.boriel.com/files/zxb/zxbasic-1.17.0-linux64.tar.gz](http://www.boriel.com/files/zxb/zxbasic-1.17.0-linux64.tar.gz)
Linux x64 binary package. No install needed, just uncompress it in a directory of your choice.
  * [zip - http://www.boriel.com/files/zxb/zxbasic-1.16.4.zip](http://www.boriel.com/files/zxb/zxbasic-1.16.4.zip) + http://www.boriel.com/files/zxb/zxbasic-1.17.0.zip](http://www.boriel.com/files/zxb/zxbasic-1.17.0.zip)
Windows, Linux, Mac zip package, with python scripts. Requires python installed in your system.
  * [tar.gz - http://www.boriel.com/files/zxb/zxbasic-1.16.4.tar.gz](http://www.boriel.com/files/zxb/zxbasic-1.16.4.tar.gz) + http://www.boriel.com/files/zxb/zxbasic-1.17.0.tar.gz](http://www.boriel.com/files/zxb/zxbasic-1.17.0.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 c933f0b8f..504d9aded 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "zxbasic" -version = "1.16.4" +version = "1.17.0" description = "Boriel's ZX BASIC Compiler" authors = ["Jose Rodriguez "] license = "GPL-3.0-or-later" diff --git a/setup.py b/setup.py index ee5230cd5..2948d4f78 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ setup_kwargs = { "name": "zxbasic", - "version": "1.16.4", + "version": "1.17.0", "description": "Boriel's ZX BASIC Compiler", "classifiers": [ # How mature is this project? Common values are diff --git a/src/zxbasm/version.py b/src/zxbasm/version.py index b7ed86b78..b32887e02 100644 --- a/src/zxbasm/version.py +++ b/src/zxbasm/version.py @@ -1 +1 @@ -VERSION = "1.16.4" +VERSION = "1.17.0" diff --git a/src/zxbc/version.py b/src/zxbc/version.py index b7ed86b78..b32887e02 100755 --- a/src/zxbc/version.py +++ b/src/zxbc/version.py @@ -1 +1 @@ -VERSION = "1.16.4" +VERSION = "1.17.0"