Skip to content

Commit 85d8aa6

Browse files
committed
Bump version: 1.11.0 → 1.11.1
1 parent 40e4462 commit 85d8aa6

File tree

6 files changed

+12
-8
lines changed

6 files changed

+12
-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.11.0
2+
current_version = 1.11.1
33

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

Changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
[v1.11.1](https://github.com/boriel/zxbasic/tree/v1.11.1)
2+
===
3+
+ ! Fix bug with constant LBOUND / UBOUND usage in array parameters
4+
15
[v1.11.0](https://github.com/boriel/zxbasic/tree/v1.11.0)
26
===
37
+ Allow passing arrays as parameters byRef!

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.11.0**</span>):
13+
Click on the icon to download latest stable version (<span style="color: green;">**1.11.1**</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.11.0-win32.zip](http://www.boriel.com/files/zxb/zxbasic-1.11.0-win32.zip)
16+
http://www.boriel.com/files/zxb/zxbasic-1.11.1-win32.zip](http://www.boriel.com/files/zxb/zxbasic-1.11.1-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.11.0.zip](http://www.boriel.com/files/zxb/zxbasic-1.11.0.zip)
19+
http://www.boriel.com/files/zxb/zxbasic-1.11.1.zip](http://www.boriel.com/files/zxb/zxbasic-1.11.1.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.11.0.tar.gz](http://www.boriel.com/files/zxb/zxbasic-1.11.0.tar.gz)
22+
http://www.boriel.com/files/zxb/zxbasic-1.11.1.tar.gz](http://www.boriel.com/files/zxb/zxbasic-1.11.1.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.11.0"
3+
version = "1.11.1"
44
description = "Boriel's ZX BASIC Compiler"
55
authors = ["Jose Rodriguez <[email protected]>"]
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.11.0',
33+
'version': '1.11.1',
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.11.0'
1+
VERSION = '1.11.1'

0 commit comments

Comments
 (0)