Skip to content

Commit e9de637

Browse files
authored
Merge pull request #1005 from boriel-basic/release/bumpversion
Release/bumpversion
2 parents ad80de9 + 7d48368 commit e9de637

File tree

6 files changed

+22
-11
lines changed

6 files changed

+22
-11
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.18.2
2+
current_version = 1.18.3
33

44
[bumpversion:file:src/zxbc/version.py]
55
search = VERSION: Final[str] = "{current_version}"

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
1-
[v1.18.2](https://github.com/boriel-basic/zxbasic/tree/v1.18.1)
1+
[v1.18.3](https://github.com/boriel-basic/zxbasic/tree/v1.18.3)
2+
===
3+
+ ! Fix `ByRef` with an array element
4+
+ ! Fix `@array` label emission in generated code
5+
+ Small optimization for -O2
6+
+ Add `getPaintData()` and `getChars()` functions to `putchars.bas` lib
7+
+ Refactor: move memory runtime routines to `runtime/mem/`
8+
+ ! Fix linting and update tests suite
9+
+ Documentation fixes and improvements (links, syntax highlighting)
10+
+ License housekeeping: ensure all files use AGPLv3 headers
11+
12+
[v1.18.2](https://github.com/boriel-basic/zxbasic/tree/v1.18.2)
213
===
314
+ ! Allows installation with `pip install` in python 3.11 environments
415
+ * Add `hmirror.bas` library

docs/archive.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,28 +10,28 @@ 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-
The latest stable version is <span style={{color: "green"}}>**1.18.2**</span>.
13+
The latest stable version is <span style={{color: "green"}}>**1.18.3**</span>.
1414
Click on the desired icon below to download the package suitable for your platform:
1515

1616
* [<img src="https://zxbasic.readthedocs.io/en/docs/img/win32.png" alt="win32zip" width="32px"/>
17-
https://www.boriel.com/files/zxb/zxbasic-1.18.2-win32.zip](https://www.boriel.com/files/zxb/zxbasic-1.18.2-win32.zip)
17+
https://www.boriel.com/files/zxb/zxbasic-1.18.3-win32.zip](https://www.boriel.com/files/zxb/zxbasic-1.18.3-win32.zip)
1818
<br />Windows .exe zip package. No install needed, just uncompress it in a directory of your choice.
1919
<br/>&nbsp;
2020
* [<img src="https://zxbasic.readthedocs.io/en/docs/img/macos.png" alt="macostargz" width="32px"/>
21-
https://www.boriel.com/files/zxb/zxbasic-1.18.2-macos.tar.gz](https://www.boriel.com/files/zxb/zxbasic-1.18.2-macos.tar.gz)
21+
https://www.boriel.com/files/zxb/zxbasic-1.18.3-macos.tar.gz](https://www.boriel.com/files/zxb/zxbasic-1.18.3-macos.tar.gz)
2222
<br />Mac OS x64 package. No install needed, just uncompress it in a directory of your choice (needs Python installed
2323
in your system).
2424
<br/>&nbsp;
2525
* [<img src="https://zxbasic.readthedocs.io/en/docs/img/linux.png" alt="macostargz" width="32px"/>
26-
https://www.boriel.com/files/zxb/zxbasic-1.18.2-linux64.tar.gz](https://www.boriel.com/files/zxb/zxbasic-1.18.2-linux64.tar.gz)
26+
https://www.boriel.com/files/zxb/zxbasic-1.18.3-linux64.tar.gz](https://www.boriel.com/files/zxb/zxbasic-1.18.3-linux64.tar.gz)
2727
<br />Linux x64 binary package. No install needed, just uncompress it in a directory of your choice.
2828
<br/>&nbsp;
2929
* [<img src="https://zxbasic.readthedocs.io/en/docs/img/zip-package.png" alt="zip" width="32px"/>
30-
https://www.boriel.com/files/zxb/zxbasic-1.18.2.zip](https://www.boriel.com/files/zxb/zxbasic-1.18.2.zip)
30+
https://www.boriel.com/files/zxb/zxbasic-1.18.3.zip](https://www.boriel.com/files/zxb/zxbasic-1.18.3.zip)
3131
<br />Windows, Linux, Mac zip package, with python scripts. Requires python installed in your system.
3232
<br/>&nbsp;
3333
* [<img src="https://zxbasic.readthedocs.io/en/docs/img/driver-down.png" alt="tar.gz" width="32px"/>
34-
https://www.boriel.com/files/zxb/zxbasic-1.18.2.tar.gz](https://www.boriel.com/files/zxb/zxbasic-1.18.2.tar.gz)
34+
https://www.boriel.com/files/zxb/zxbasic-1.18.3.tar.gz](https://www.boriel.com/files/zxb/zxbasic-1.18.3.tar.gz)
3535
<br />Windows, Linux, Mac tar.gz package, with python scripts. Requires python installed in your system.
3636

3737
### 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.18.2"
3+
version = "1.18.3"
44
description = "Boriel's ZX BASIC Compiler"
55
authors = ["Jose Rodriguez <[email protected]>"]
66
license = "AGPL-3.0-or-later"

src/zxbasm/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
# See https://www.gnu.org/licenses/agpl-3.0.html for details.
66
# --------------------------------------------------------------------
77

8-
VERSION = "1.18.2"
8+
VERSION = "1.18.3"

src/zxbc/version.py

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

88
from typing import Final
99

10-
VERSION: Final[str] = "1.18.2"
10+
VERSION: Final[str] = "1.18.3"

0 commit comments

Comments
 (0)