diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6f7a5aed4f1cc537bcaa094886a3f522b7102f47..4b0a3186241ed2f065358cd2f15fe17d5bd7002b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -19,37 +19,48 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 *
 
-## [0.9.12] - 2023-06-20
+## [0.9.13] - 2023-08-01
+
+### Changed
+
+* Improved command line parsing with positional ROM path value
+* Better CI/CD for releases
+
+### Fixed
+
+* Small issue with command line arguments
+
+## [0.9.12] - 2023-08-01
 
 ### Added
 
 * New WASM build
 
-## [0.9.11] - 2023-06-20
+## [0.9.11] - 2023-08-01
 
 ### Fixed
 
 * Build of a new release
 
-## [0.9.10] - 2023-06-20
+## [0.9.10] - 2023-08-01
 
 ### Fixed
 
 * Issue with release life-cycle
 
-## [0.9.9] - 2023-06-20
+## [0.9.9] - 2023-08-01
 
 ### Fixed
 
 * Issue with release life-cycle
 
-## [0.9.8] - 2023-06-20
+## [0.9.8] - 2023-08-01
 
 ### Added
 
 * Better release life-cycle
 
-## [0.9.7] - 2023-06-20
+## [0.9.7] - 2023-08-01
 
 ### Added
 
diff --git a/Cargo.toml b/Cargo.toml
index c0bfcc629f5d29b176f3fdc656b135badde546e8..c1119a157a0d5c48bd281ef09d7e10d980f1585a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "boytacean"
 description = "A Game Boy emulator that is written in Rust."
-version = "0.9.12"
+version = "0.9.13"
 authors = ["João Magalhães <joamag@gmail.com>"]
 license = "Apache-2.0"
 repository = "https://github.com/joamag/boytacean"
diff --git a/frontends/libretro/Cargo.toml b/frontends/libretro/Cargo.toml
index 165fa81e245dee308aab5cdf98cda93242c05eda..9b993f4a2166f01c586ef808e7565ef1e43f80ba 100644
--- a/frontends/libretro/Cargo.toml
+++ b/frontends/libretro/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "boytacean-libretro"
-version = "0.9.12"
+version = "0.9.13"
 authors = ["João Magalhães <joamag@gmail.com>"]
 description = "A Lib Retro frontend for Boytacen"
 license = "Apache-2.0"
diff --git a/frontends/libretro/res/boytacean_libretro.info b/frontends/libretro/res/boytacean_libretro.info
index 5d9f2c32175d11271c5031c9dd5a272a410cb95f..2966bc690d4219eda144abe4a9ef676ed1f34807 100644
--- a/frontends/libretro/res/boytacean_libretro.info
+++ b/frontends/libretro/res/boytacean_libretro.info
@@ -6,7 +6,7 @@ corename = "Boytacean"
 categories = "Emulator"
 license = "Apache-2."
 permissions = ""
-display_version = "0.9.12"
+display_version = "0.9.13"
 
 # Hardware Information
 manufacturer = "Nintendo"
diff --git a/frontends/libretro/src/lib.rs b/frontends/libretro/src/lib.rs
index 9b1cbbe74b90981ff85eb1cb2990118434e54560..408b95e477b597e24f87224db5557777e422c48e 100644
--- a/frontends/libretro/src/lib.rs
+++ b/frontends/libretro/src/lib.rs
@@ -174,7 +174,7 @@ pub extern "C" fn retro_reset() {
 pub unsafe extern "C" fn retro_get_system_info(info: *mut RetroSystemInfo) {
     debugln!("retro_get_system_info()");
     (*info).library_name = "Boytacean\0".as_ptr() as *const c_char;
-    (*info).library_version = "v0.9.12\0".as_ptr() as *const c_char;
+    (*info).library_version = "v0.9.13\0".as_ptr() as *const c_char;
     (*info).valid_extensions = "gb|gbc\0".as_ptr() as *const c_char;
     (*info).need_fullpath = false;
     (*info).block_extract = false;
diff --git a/frontends/sdl/Cargo.toml b/frontends/sdl/Cargo.toml
index 04a7dab9c06c61f4c01fdb5f8be1ecdf49dac7d6..2ffea6e3d67bd0884989c0c87dd8594d9293d307 100644
--- a/frontends/sdl/Cargo.toml
+++ b/frontends/sdl/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "boytacean-sdl"
-version = "0.9.12"
+version = "0.9.13"
 authors = ["João Magalhães <joamag@gmail.com>"]
 description = "An SDL frontend for Boytacen"
 license = "Apache-2.0"
diff --git a/frontends/web/package.json b/frontends/web/package.json
index 9110434efb1640de9f471299ce1de51115121cc7..8fe26e28dc6e9528861e29e1f0f504c8c51aa5d9 100644
--- a/frontends/web/package.json
+++ b/frontends/web/package.json
@@ -1,6 +1,6 @@
 {
     "name": "boytacean-web",
-    "version": "0.9.12",
+    "version": "0.9.13",
     "description": "The web version of Boytacean",
     "repository": {
         "type": "git",