diff --git a/.bumpversion.cfg b/.bumpversion.cfg
index 92ab17d99..949b1ddc4 100644
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 1.18.0
+current_version = 1.18.1
[bumpversion:file:src/zxbc/version.py]
search = VERSION: Final[str] = "{current_version}"
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d2f65abae..952157f1c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,10 @@
+[v1.18.0](https://github.com/boriel-basic/zxbasic/tree/v1.18.1)
+===
++ ! Fixes crash on simple cast from i32 to u32 and vice versa
+
[v1.18.0](https://github.com/boriel-basic/zxbasic/tree/v1.18.0)
===
-+ ! Fixes bug with local arrays and arrays pased byRef
++ ! Fixes bug with local arrays and arrays passed byRef
+ All booleans are now normalized smartly!
+ Labels must be declared now at the beginning of the line.
+ ! Fixes several bugs and improved stability
@@ -35,7 +39,7 @@
+ ! Fixed a bug with local Arrays of Floats
+ ! Fix PEEK (ULong, ...)
+ Other minor errors fixes and improvements
-+ NextTool is now directly executable
++ NextCreator tool is now directly executable
[v1.17.1](https://github.com/boriel-basic/zxbasic/tree/v1.17.1)
===
diff --git a/docs/archive.md b/docs/archive.md
index 450e9d313..b2b03a8ee 100644
--- a/docs/archive.md
+++ b/docs/archive.md
@@ -10,28 +10,28 @@ 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.
-Latest stable version is **1.18.0**.
+Latest stable version is **1.18.1**.
Click on the desired icon below to download the package suitable for your platform:
* [
- https://www.boriel.com/files/zxb/zxbasic-1.18.0-win32.zip](https://www.boriel.com/files/zxb/zxbasic-1.18.0-win32.zip)
+ https://www.boriel.com/files/zxb/zxbasic-1.18.1-win32.zip](https://www.boriel.com/files/zxb/zxbasic-1.18.1-win32.zip)
Windows .exe zip package. No install needed, just uncompress it in a directory of your choice.
* [
- https://www.boriel.com/files/zxb/zxbasic-1.18.0-macos.tar.gz](https://www.boriel.com/files/zxb/zxbasic-1.18.0-macos.tar.gz)
+ https://www.boriel.com/files/zxb/zxbasic-1.18.1-macos.tar.gz](https://www.boriel.com/files/zxb/zxbasic-1.18.1-macos.tar.gz)
Mac OS x64 package. No install needed, just uncompress it in a directory of your choice (needs Python installed
in your system).
* [
- https://www.boriel.com/files/zxb/zxbasic-1.18.0-linux64.tar.gz](https://www.boriel.com/files/zxb/zxbasic-1.18.0-linux64.tar.gz)
+ https://www.boriel.com/files/zxb/zxbasic-1.18.1-linux64.tar.gz](https://www.boriel.com/files/zxb/zxbasic-1.18.1-linux64.tar.gz)
Linux x64 binary package. No install needed, just uncompress it in a directory of your choice.
* [
- https://www.boriel.com/files/zxb/zxbasic-1.18.0.zip](https://www.boriel.com/files/zxb/zxbasic-1.18.0.zip)
+ https://www.boriel.com/files/zxb/zxbasic-1.18.1.zip](https://www.boriel.com/files/zxb/zxbasic-1.18.1.zip)
Windows, Linux, Mac zip package, with python scripts. Requires python installed in your system.
* [
- https://www.boriel.com/files/zxb/zxbasic-1.18.0.tar.gz](https://www.boriel.com/files/zxb/zxbasic-1.18.0.tar.gz)
+ https://www.boriel.com/files/zxb/zxbasic-1.18.1.tar.gz](https://www.boriel.com/files/zxb/zxbasic-1.18.1.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 eb0d78fcd..2582c9d63 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "zxbasic"
-version = "1.18.0"
+version = "1.18.1"
description = "Boriel's ZX BASIC Compiler"
authors = ["Jose Rodriguez "]
license = "AGPL-3.0-or-later"
diff --git a/src/zxbasm/version.py b/src/zxbasm/version.py
index 4c0681d4c..a56ae3a4d 100644
--- a/src/zxbasm/version.py
+++ b/src/zxbasm/version.py
@@ -1 +1 @@
-VERSION = "1.18.0"
+VERSION = "1.18.1"
diff --git a/src/zxbc/version.py b/src/zxbc/version.py
index 90aa58ab8..4ceaf8d0a 100755
--- a/src/zxbc/version.py
+++ b/src/zxbc/version.py
@@ -1,3 +1,3 @@
from typing import Final
-VERSION: Final[str] = "1.18.0"
+VERSION: Final[str] = "1.18.1"