Skip to content

Commit 6fc71fb

Browse files
authored
Merge pull request #338 from boriel/release/bumpversion
Release/bumpversion
2 parents 1da5516 + 3b5c470 commit 6fc71fb

File tree

6 files changed

+16
-8
lines changed

6 files changed

+16
-8
lines changed

.bumpversion.cfg

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

44
[bumpversion:file:zxb/version.py]
55
search = VERSION = '{current_version}'
@@ -12,3 +12,7 @@ replace = 'version': '{new_version}'
1212
[bumpversion:file:pyproject.toml]
1313
search = version = "{current_version}"
1414
replace = version = "{new_version}"
15+
16+
[bumpversion:file:docs/archive.md]
17+
search = version = "zxbasic-{current_version}"
18+
replace = version = "zxbasic-{new_version}"

Changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
[v1.10.2](https://github.com/boriel/zxbasic/tree/v1.10.2)
2+
===
3+
+ ! Fix a critical bug with local arrays
4+
15
[v1.10.1](https://github.com/boriel/zxbasic/tree/v1.10.1)
26
===
37
+ Deprecating `zxb` executable in favour of `zxbc`

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.1**</span>):
13+
Click on the icon to download latest stable version (<span style="color: green;">**version = "zxbasic-1.10.2"**</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.1-win32.zip](http://www.boriel.com/files/zxb/zxbasic-1.10.1-win32.zip)
16+
http://www.boriel.com/files/zxb/zxbasic-version = "zxbasic-1.10.2"-win32.zip](http://www.boriel.com/files/zxb/zxbasic-version = "zxbasic-1.10.2"-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.1.zip](http://www.boriel.com/files/zxb/zxbasic-1.10.1.zip)
19+
http://www.boriel.com/files/zxb/zxbasic-version = "zxbasic-1.10.2".zip](http://www.boriel.com/files/zxb/zxbasic-version = "zxbasic-1.10.2".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.1.tar.gz](http://www.boriel.com/files/zxb/zxbasic-1.10.1.tar.gz)
22+
http://www.boriel.com/files/zxb/zxbasic-version = "zxbasic-1.10.2".tar.gz](http://www.boriel.com/files/zxb/zxbasic-version = "zxbasic-1.10.2".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.1"
3+
version = "1.10.2"
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.1',
33+
'version': '1.10.2',
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.1'
1+
VERSION = '1.10.2'

0 commit comments

Comments
 (0)