Skip to content
This repository has been archived by the owner on May 21, 2024. It is now read-only.

Commit

Permalink
Merge pull request boriel-basic#609 from boriel/release/bumpversion
Browse files Browse the repository at this point in the history
Release/bumpversion
  • Loading branch information
boriel committed Feb 15, 2022
2 parents 6629acb + 1bcd567 commit 0181242
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 11 deletions.
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.16.2
current_version = 1.16.3

[bumpversion:file:src/zxbc/version.py]
search = VERSION = "{current_version}"
Expand Down
6 changes: 6 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
[v1.16.3](https://github.com/boriel/zxbasic/tree/v1.16.3)
===
+ ! Fixed some bugs in the compiler
+ ZXBPP (preprocessor) now allows boolean conditions
+ ZXBPP (preprocessor) now allows numeric conditions

[v1.16.2](https://github.com/boriel/zxbasic/tree/v1.16.2)
===
+ ! Fixed bug with assembler and temporary labels
Expand Down
12 changes: 6 additions & 6 deletions docs/archive.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <span style="color: green;">**1.16.2**</span>.
Latest stable version is <span style="color: green;">**1.16.3**</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"/>
http://www.boriel.com/files/zxb/zxbasic-1.16.2-win32.zip](http://www.boriel.com/files/zxb/zxbasic-1.16.2-win32.zip)
http://www.boriel.com/files/zxb/zxbasic-1.16.3-win32.zip](http://www.boriel.com/files/zxb/zxbasic-1.16.3-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"/>
http://www.boriel.com/files/zxb/zxbasic-1.16.2-macos.tar.gz](http://www.boriel.com/files/zxb/zxbasic-1.16.2-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.3-macos.tar.gz)
<br />Mac OS 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/linux.png" alt="macostargz" width="32px"/>
http://www.boriel.com/files/zxb/zxbasic-1.16.2-linux64.tar.gz](http://www.boriel.com/files/zxb/zxbasic-1.16.2-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.3-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"/>
http://www.boriel.com/files/zxb/zxbasic-1.16.2.zip](http://www.boriel.com/files/zxb/zxbasic-1.16.2.zip)
http://www.boriel.com/files/zxb/zxbasic-1.16.3.zip](http://www.boriel.com/files/zxb/zxbasic-1.16.3.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"/>
http://www.boriel.com/files/zxb/zxbasic-1.16.2.tar.gz](http://www.boriel.com/files/zxb/zxbasic-1.16.2.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)
<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 @@
[tool.poetry]
name = "zxbasic"
version = "1.16.2"
version = "1.16.3"
description = "Boriel's ZX BASIC Compiler"
authors = ["Jose Rodriguez <boriel@gmail.com>"]
license = "GPL-3.0-or-later"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

setup_kwargs = {
"name": "zxbasic",
"version": "1.16.2",
"version": "1.16.3",
"description": "Boriel's ZX BASIC Compiler",
"classifiers": [
# How mature is this project? Common values are
Expand Down
2 changes: 1 addition & 1 deletion src/zxbasm/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "1.16.2"
VERSION = "1.16.3"
2 changes: 1 addition & 1 deletion src/zxbc/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "1.16.2"
VERSION = "1.16.3"

0 comments on commit 0181242

Please sign in to comment.