Skip to content

Commit 11ef813

Browse files
authored
Merge pull request #540 from boriel/release/bumpversion
Release/bumpversion
2 parents 9fcc48a + 7e7b138 commit 11ef813

9 files changed

Lines changed: 22 additions & 11 deletions

File tree

.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.14.1
2+
current_version = 1.15.0
33

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

Changelog.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
[v1.15.0](https://github.com/boriel/zxbasic/tree/v1.15.0)
2+
===
3+
+ ! Fixed bugs and improved stability, specially with the optimizer
4+
+ Variables and functions now allow underscore character
5+
* Peephole optimizer is now smarter
6+
* Compiler now allows config files to avoid repearing cmdline flags
7+
* Added #pragma once
8+
9+
110
[v1.14.1](https://github.com/boriel/zxbasic/tree/v1.14.1)
211
===
312
+ Fixed bugs and improved stability

docs/archive.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,27 +10,27 @@ 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-
Latest stable version is <span style="color: green;">**1.14.1**</span>.
13+
Latest stable version is <span style="color: green;">**1.15.0**</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-
http://www.boriel.com/files/zxb/zxbasic-1.14.1-win32.zip](http://www.boriel.com/files/zxb/zxbasic-1.14.1-win32.zip)
17+
http://www.boriel.com/files/zxb/zxbasic-1.15.0-win32.zip](http://www.boriel.com/files/zxb/zxbasic-1.15.0-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-
http://www.boriel.com/files/zxb/zxbasic-1.14.1-macos.tar.gz](http://www.boriel.com/files/zxb/zxbasic-1.14.1-macos.tar.gz)
21+
http://www.boriel.com/files/zxb/zxbasic-1.15.0-macos.tar.gz](http://www.boriel.com/files/zxb/zxbasic-1.15.0-macos.tar.gz)
2222
<br />Mac OS x64 binary package. No install needed, just uncompress it in a directory of your choice.
2323
<br/>&nbsp;
2424
* [<img src="https://zxbasic.readthedocs.io/en/docs/img/linux.png" alt="macostargz" width="32px"/>
25-
http://www.boriel.com/files/zxb/zxbasic-1.14.1-linux64.tar.gz](http://www.boriel.com/files/zxb/zxbasic-1.14.1-linux64.tar.gz)
25+
http://www.boriel.com/files/zxb/zxbasic-1.15.0-linux64.tar.gz](http://www.boriel.com/files/zxb/zxbasic-1.15.0-linux64.tar.gz)
2626
<br />Linux x64 binary package. No install needed, just uncompress it in a directory of your choice.
2727
<br/>&nbsp;
2828
* [<img src="https://zxbasic.readthedocs.io/en/docs/img/zip-package.png" alt="zip" width="32px"/>
29-
http://www.boriel.com/files/zxb/zxbasic-1.14.1.zip](http://www.boriel.com/files/zxb/zxbasic-1.14.1.zip)
29+
http://www.boriel.com/files/zxb/zxbasic-1.15.0.zip](http://www.boriel.com/files/zxb/zxbasic-1.15.0.zip)
3030
<br />Windows, Linux, Mac zip package, with python scripts. Requires python installed in your system.
3131
<br/>&nbsp;
3232
* [<img src="https://zxbasic.readthedocs.io/en/docs/img/driver-down.png" alt="tar.gz" width="32px"/>
33-
http://www.boriel.com/files/zxb/zxbasic-1.14.1.tar.gz](http://www.boriel.com/files/zxb/zxbasic-1.14.1.tar.gz)
33+
http://www.boriel.com/files/zxb/zxbasic-1.15.0.tar.gz](http://www.boriel.com/files/zxb/zxbasic-1.15.0.tar.gz)
3434
<br />Windows, Linux, Mac tar.gz package, with python scripts. Requires python installed in your system.
3535

3636
###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.14.1"
3+
version = "1.15.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
@@ -23,7 +23,7 @@
2323

2424
setup_kwargs = {
2525
'name': 'zxbasic',
26-
'version': '1.14.1',
26+
'version': '1.15.0',
2727
'description': "Boriel's ZX BASIC Compiler",
2828
'classifiers': [
2929
# How mature is this project? Common values are

src/arch/zx48k/library/lcase.bas

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
#ifndef __LIBRARY_LCASE__
99

1010
REM Avoid recursive / multiple inclusion
11+
#warning Deprecated library. Use <string.bas> instead
1112

1213
#define __LIBRARY_LCASE__
1314

src/arch/zx48k/library/ucase.bas

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
#ifndef __LIBRARY_UCASE__
99

1010
REM Avoid recursive / multiple inclusion
11+
#warning Deprecated library. Use <string.bas> instead
1112

1213
#define __LIBRARY_UCASE__
1314

src/zxbasm/version.py

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

src/zxbc/version.py

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

0 commit comments

Comments
 (0)