Skip to content

Commit 00c46f0

Browse files
committed
Bump version: 1.10.3 → 1.11.0
1 parent b623949 commit 00c46f0

File tree

6 files changed

+14
-8
lines changed

6 files changed

+14
-8
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.10.3
2+
current_version = 1.11.0
33

44
[bumpversion:file:zxb/version.py]
55
search = VERSION = '{current_version}'

Changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
[v1.11.0](https://github.com/boriel/zxbasic/tree/v1.11.0)
2+
===
3+
+ Allow passing arrays as parameters byRef!
4+
+ ! Several bugfixes and improved stability and code cleanup
5+
+ Add PRINTFXZ by Eunar Saukas and Andrew Owen (ported by Britlion)
6+
17
[v1.10.3](https://github.com/boriel/zxbasic/tree/v1.10.3)
28
===
39
+ ! Bugfixes and improved stability

docs/archive.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ repository (git).
1010
You can contribute to ZX BASIC by reporting possible bugs or improvement suggestions at the
1111
[forum](http://www.boriel.com/forum) or in social media.
1212

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

1515
* [<img src="https://zxbasic.readthedocs.io/en/latest/img/zip-package-2.png" alt="win32zip" width="32px"/>
16-
http://www.boriel.com/files/zxb/zxbasic-1.10.3-win32.zip](http://www.boriel.com/files/zxb/zxbasic-1.10.3-win32.zip)
16+
http://www.boriel.com/files/zxb/zxbasic-1.11.0-win32.zip](http://www.boriel.com/files/zxb/zxbasic-1.11.0-win32.zip)
1717
<br />Windows .exe zip package. No install needed, just uncompress it in a directory of your choice.
1818
* [<img src="https://zxbasic.readthedocs.io/en/latest/img/zip-package.png" alt="zip" width="32px"/>
19-
http://www.boriel.com/files/zxb/zxbasic-1.10.3.zip](http://www.boriel.com/files/zxb/zxbasic-1.10.3.zip)
19+
http://www.boriel.com/files/zxb/zxbasic-1.11.0.zip](http://www.boriel.com/files/zxb/zxbasic-1.11.0.zip)
2020
<br />Windows, Linux, Mac zip package, with python scripts. Requires python installed in your system.
2121
* [<img src="https://zxbasic.readthedocs.io/en/latest/img/driver-down.png" alt="tar.gz" width="32px"/>
22-
http://www.boriel.com/files/zxb/zxbasic-1.10.3.tar.gz](http://www.boriel.com/files/zxb/zxbasic-1.10.3.tar.gz)
22+
http://www.boriel.com/files/zxb/zxbasic-1.11.0.tar.gz](http://www.boriel.com/files/zxb/zxbasic-1.11.0.tar.gz)
2323
<br />(Windows, Linux, Mac) tar.gz package, with python scripts. Requires python installed in your system.
2424

2525
###What's new

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "zxbasic"
3-
version = "1.10.3"
3+
version = "1.11.0"
44
description = "Boriel's ZX BASIC Compiler"
55
authors = ["Jose Rodriguez <boriel@gmail.com>"]
66
license = "GPL-3.0-or-later"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
setup_kwargs = {
3232
'name': 'zxbasic',
33-
'version': '1.10.3',
33+
'version': '1.11.0',
3434
'description': "Boriel's ZX BASIC Compiler",
3535
'long_description': None,
3636
'author': 'Jose Rodriguez',

zxb/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = '1.10.3'
1+
VERSION = '1.11.0'

0 commit comments

Comments
 (0)