diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 91bd53e13..b29b47282 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -9,7 +9,7 @@ env:
GODOT_VERSION_MAC: 3.5.2
RASPBERRY_PI_BUILDS_VERSION: 1.15.0
EXPORT_NAME: Pixelorama
- TAG: v0.11
+ TAG: v0.11.1
BUTLER_API_KEY: ${{ secrets.BUTLER_API_KEY }}
jobs:
diff --git a/CHANGELOG.md b/CHANGELOG.md
index cee40b9db..ab19593d3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). All the dates are in YYYY-MM-DD format.
-## [v0.11.1] - Unreleased
+## [v0.11.1] - 2023-08-12
This update has been brought to you by the contributions of:
Fayez Akhtar ([@Variable-ind](https://github.com/Variable-ind)), [@20kdc](https://github.com/20kdc), Matteo Piovanelli ([@MatteoPiovanelli-Laser](https://github.com/MatteoPiovanelli-Laser))
diff --git a/Misc/Linux/com.orama_interactive.Pixelorama.appdata.xml b/Misc/Linux/com.orama_interactive.Pixelorama.appdata.xml
index 91878abab..242c1cdbb 100644
--- a/Misc/Linux/com.orama_interactive.Pixelorama.appdata.xml
+++ b/Misc/Linux/com.orama_interactive.Pixelorama.appdata.xml
@@ -37,6 +37,7 @@
+
diff --git a/installer/pixelorama.nsi b/installer/pixelorama.nsi
index f095c02bc..3fa4889de 100644
--- a/installer/pixelorama.nsi
+++ b/installer/pixelorama.nsi
@@ -6,7 +6,7 @@
; Helper variables so that we don't change 20 instances of the version for every update
!define APPNAME "Pixelorama"
- !define APPVERSION "v0.11"
+ !define APPVERSION "v0.11.1"
!define COMPANYNAME "Orama Interactive"
diff --git a/project.godot b/project.godot
index 9e49bc922..0a028ae5e 100644
--- a/project.godot
+++ b/project.godot
@@ -343,7 +343,7 @@ config/icon="res://assets/graphics/icons/icon.png"
config/macos_native_icon="res://assets/graphics/icons/icon.icns"
config/windows_native_icon="res://assets/graphics/icons/icon.ico"
config/custom_user_dir_name.X11="pixelorama"
-config/Version="v0.11.1-rc3"
+config/Version="v0.11.1-stable"
config/ExtensionsAPI_Version=3
config/Pxo_Version=2
diff --git a/src/UI/TopMenuContainer/TopMenuContainer.gd b/src/UI/TopMenuContainer/TopMenuContainer.gd
index 5c07ac06c..5222425f1 100644
--- a/src/UI/TopMenuContainer/TopMenuContainer.gd
+++ b/src/UI/TopMenuContainer/TopMenuContainer.gd
@@ -730,7 +730,7 @@ func help_menu_id_pressed(id: int) -> void:
OS.shell_open(ProjectSettings.globalize_path("user://logs"))
Global.HelpMenu.CHANGELOG:
OS.shell_open(
- "https://github.com/Orama-Interactive/Pixelorama/blob/master/CHANGELOG.md#v011---2023-06-13"
+ "https://github.com/Orama-Interactive/Pixelorama/blob/master/CHANGELOG.md#v0111---2023-08-12"
)
Global.HelpMenu.ABOUT_PIXELORAMA:
_popup_dialog(Global.control.get_node("Dialogs/AboutDialog"))