diff --git a/.bumpversion.cfg b/.bumpversion.cfg index e48f3fb90..fb6e88014 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.16.3 +current_version = 1.16.4 [bumpversion:file:src/zxbc/version.py] search = VERSION = "{current_version}" diff --git a/Changelog.md b/Changelog.md index dcf5dd991..c60fde4ba 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,7 @@ +[v1.16.4](https://github.com/boriel/zxbasic/tree/v1.16.4) +=== ++ ! Fixed some bugs and improved stability + [v1.16.3](https://github.com/boriel/zxbasic/tree/v1.16.3) === + ! Fixed some bugs in the compiler diff --git a/README.md b/README.md index f5a771353..48574f1ef 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ ![Boriel ZX Basic](img/zxbasic_logo.png) [![Build Status](https://github.com/boriel/zxbasic/workflows/ZXBasic/badge.svg)](https://github.com/boriel/zxbasic/actions) -[![Build Status](https://travis-ci.com/boriel/zxbasic.svg?branch=master)](https://travis-ci.com/boriel/zxbasic) [![license](https://img.shields.io/badge/License-GPLv3-blue.svg)](./LICENSE.txt) [![pyversions](https://img.shields.io/pypi/pyversions/zxbasic.svg)](https://pypi.python.org/pypi/zxbasic) @@ -13,12 +12,12 @@ Copyleft (K) 2008, Jose Rodriguez-Rosa (a.k.a. Boriel) All files in this project are covered under the [GPLv3 LICENSE](http://www.gnu.org/licenses/gpl.html) except those placed in directories `library/` and `library-asm`. Those are licensed under [MIT license](https://en.wikipedia.org/wiki/MIT_License) unless otherwise -specified in the files themselves (i.e. a different license). Anyway, all of +specified in the files themselves (i.e. a different license). Anyway, all of the licenses for files under those directories allow binary closed-source (i.e. commercial) distribution of the files created with this compiler. You can create closed-source programs (even commercial ones) with this compiler -(a mention to this tool will be welcome, though). But you are not allowed to +(a mention to this tool will be welcome, though). But you are not allowed to release the compiler itself as a closed source program. If you modify *this* project (the compiler .py or anything licensed as GPLv3) @@ -33,7 +32,7 @@ DOCUMENTATION This is a very little help file. - For DOCUMENTATION in English go to the [ZX BASIC docs](https://zxbasic.readthedocs.io/en/latest/). - + - For help, support, updates meet the community at the [forum](https://www.boriel.com/forum). @@ -45,10 +44,10 @@ and get the version most suitable for you. There are, basically, two flavors (both with identical capabilities): - - For Windows you can download de win32 executable (Windows .exe zip package) version. + - For Windows you can download de win32 executable (Windows .exe zip package) version. To install just uncompress it in a directory of your choice. The main executable is `zxbc.exe` (more on this later). With this toolchain -also comes `zxbasm.exe` (the assembler) and `zxbpp.exe` (the preprocessor), but these +also comes `zxbasm.exe` (the assembler) and `zxbpp.exe` (the preprocessor), but these are not needed when programming in BASIC. - For Linux and Mac OSX there is a python version, so you will need a python diff --git a/docs/archive.md b/docs/archive.md index 7cb1c17e4..a8b863553 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.3**. +Latest stable version is **1.16.4**. Click on the desired icon below to download the package suitable for your platform: * [win32zip - http://www.boriel.com/files/zxb/zxbasic-1.16.3-win32.zip](http://www.boriel.com/files/zxb/zxbasic-1.16.3-win32.zip) + http://www.boriel.com/files/zxb/zxbasic-1.16.4-win32.zip](http://www.boriel.com/files/zxb/zxbasic-1.16.4-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.3-macos.tar.gz](http://www.boriel.com/files/zxb/zxbasic-1.16.3-macos.tar.gz) + 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)
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.3-linux64.tar.gz](http://www.boriel.com/files/zxb/zxbasic-1.16.3-linux64.tar.gz) + 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)
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.3.zip](http://www.boriel.com/files/zxb/zxbasic-1.16.3.zip) + http://www.boriel.com/files/zxb/zxbasic-1.16.4.zip](http://www.boriel.com/files/zxb/zxbasic-1.16.4.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.3.tar.gz](http://www.boriel.com/files/zxb/zxbasic-1.16.3.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)
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 e912c36be..d40156109 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "zxbasic" -version = "1.16.3" +version = "1.16.4" description = "Boriel's ZX BASIC Compiler" authors = ["Jose Rodriguez "] license = "GPL-3.0-or-later" diff --git a/setup.py b/setup.py index 210ba8627..ee5230cd5 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ setup_kwargs = { "name": "zxbasic", - "version": "1.16.3", + "version": "1.16.4", "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 9aaeca493..b7ed86b78 100644 --- a/src/zxbasm/version.py +++ b/src/zxbasm/version.py @@ -1 +1 @@ -VERSION = "1.16.3" +VERSION = "1.16.4" diff --git a/src/zxbc/version.py b/src/zxbc/version.py index 9aaeca493..b7ed86b78 100755 --- a/src/zxbc/version.py +++ b/src/zxbc/version.py @@ -1 +1 @@ -VERSION = "1.16.3" +VERSION = "1.16.4"