diff --git a/.bumpversion.cfg b/.bumpversion.cfg
index 3c46cf419..0815495db 100644
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 1.10.2
+current_version = 1.10.3
[bumpversion:file:zxb/version.py]
search = VERSION = '{current_version}'
diff --git a/Changelog.md b/Changelog.md
index 4681bf8c8..0287428fb 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,3 +1,8 @@
+[v1.10.3](https://github.com/boriel/zxbasic/tree/v1.10.3)
+===
++ ! Bugfixes and improved stability
++ Internal refactors in code. Also -d (debug) behaviour updated
+
[v1.10.2](https://github.com/boriel/zxbasic/tree/v1.10.2)
===
+ ! Fix a critical bug with local arrays
diff --git a/docs/archive.md b/docs/archive.md
index 0519ba808..73cfc9d40 100644
--- a/docs/archive.md
+++ b/docs/archive.md
@@ -10,16 +10,16 @@ repository (git).
You can contribute to ZX BASIC by reporting possible bugs or improvement suggestions at the
[forum](http://www.boriel.com/forum) or in social media.
-Click on the icon to download latest stable version (**1.10.2**):
+Click on the icon to download latest stable version (**1.10.3**):
* [
- http://www.boriel.com/files/zxb/zxbasic-1.10.2-win32.zip](http://www.boriel.com/files/zxb/zxbasic-1.10.2-win32.zip)
+ http://www.boriel.com/files/zxb/zxbasic-1.10.3-win32.zip](http://www.boriel.com/files/zxb/zxbasic-1.10.3-win32.zip)
Windows .exe zip package. No install needed, just uncompress it in a directory of your choice.
* [
- http://www.boriel.com/files/zxb/zxbasic-1.10.2.zip](http://www.boriel.com/files/zxb/zxbasic-1.10.2.zip)
+ http://www.boriel.com/files/zxb/zxbasic-1.10.3.zip](http://www.boriel.com/files/zxb/zxbasic-1.10.3.zip)
Windows, Linux, Mac zip package, with python scripts. Requires python installed in your system.
* [
- http://www.boriel.com/files/zxb/zxbasic-1.10.2.tar.gz](http://www.boriel.com/files/zxb/zxbasic-1.10.2.tar.gz)
+ http://www.boriel.com/files/zxb/zxbasic-1.10.3.tar.gz](http://www.boriel.com/files/zxb/zxbasic-1.10.3.tar.gz)
(Windows, Linux, Mac) tar.gz package, with python scripts. Requires python installed in your system.
###What's new
diff --git a/pyproject.toml b/pyproject.toml
index b5d181959..9ea9419d4 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "zxbasic"
-version = "1.10.2"
+version = "1.10.3"
description = "Boriel's ZX BASIC Compiler"
authors = ["Jose Rodriguez "]
license = "GPL-3.0-or-later"
diff --git a/setup.py b/setup.py
index 07156f7a7..106d2a95f 100644
--- a/setup.py
+++ b/setup.py
@@ -30,7 +30,7 @@
setup_kwargs = {
'name': 'zxbasic',
- 'version': '1.10.2',
+ 'version': '1.10.3',
'description': "Boriel's ZX BASIC Compiler",
'long_description': None,
'author': 'Jose Rodriguez',
diff --git a/zxb/version.py b/zxb/version.py
index 73373812c..478d93df5 100755
--- a/zxb/version.py
+++ b/zxb/version.py
@@ -1 +1 @@
-VERSION = '1.10.2'
+VERSION = '1.10.3'