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.10.2
current_version = 1.10.3

[bumpversion:file:zxb/version.py]
search = VERSION = '{current_version}'
Expand Down
5 changes: 5 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
[v1.10.3](https://github.com/boriel/zxbasic/tree/v1.10.3)
===
+ ! Bugfixes and improved stability
+ Internal refactors in code. Also -d (debug) behaviour updated

[v1.10.2](https://github.com/boriel/zxbasic/tree/v1.10.2)
===
+ ! Fix a critical bug with local arrays
Expand Down
8 changes: 4 additions & 4 deletions docs/archive.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ 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.

Click on the icon to download latest stable version (<span style="color: green;">**1.10.2**</span>):
Click on the icon to download latest stable version (<span style="color: green;">**1.10.3**</span>):

* [<img src="https://zxbasic.readthedocs.io/en/latest/img/zip-package-2.png" alt="win32zip" width="32px"/>
http://www.boriel.com/files/zxb/zxbasic-1.10.2-win32.zip](http://www.boriel.com/files/zxb/zxbasic-1.10.2-win32.zip)
http://www.boriel.com/files/zxb/zxbasic-1.10.3-win32.zip](http://www.boriel.com/files/zxb/zxbasic-1.10.3-win32.zip)
<br />Windows .exe zip package. No install needed, just uncompress it in a directory of your choice.
* [<img src="https://zxbasic.readthedocs.io/en/latest/img/zip-package.png" alt="zip" width="32px"/>
http://www.boriel.com/files/zxb/zxbasic-1.10.2.zip](http://www.boriel.com/files/zxb/zxbasic-1.10.2.zip)
http://www.boriel.com/files/zxb/zxbasic-1.10.3.zip](http://www.boriel.com/files/zxb/zxbasic-1.10.3.zip)
<br />Windows, Linux, Mac zip package, with python scripts. Requires python installed in your system.
* [<img src="https://zxbasic.readthedocs.io/en/latest/img/driver-down.png" alt="tar.gz" width="32px"/>
http://www.boriel.com/files/zxb/zxbasic-1.10.2.tar.gz](http://www.boriel.com/files/zxb/zxbasic-1.10.2.tar.gz)
http://www.boriel.com/files/zxb/zxbasic-1.10.3.tar.gz](http://www.boriel.com/files/zxb/zxbasic-1.10.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.10.2"
version = "1.10.3"
description = "Boriel's ZX BASIC Compiler"
authors = ["Jose Rodriguez <[email protected]>"]
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 @@ -30,7 +30,7 @@

setup_kwargs = {
'name': 'zxbasic',
'version': '1.10.2',
'version': '1.10.3',
'description': "Boriel's ZX BASIC Compiler",
'long_description': None,
'author': 'Jose Rodriguez',
Expand Down
2 changes: 1 addition & 1 deletion zxb/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '1.10.2'
VERSION = '1.10.3'