diff --git a/python/pyproject.toml b/python/pyproject.toml index 4abd4a17d3..987a7c9b0e 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "pyxel" -version = "2.3.4" +version = "2.3.5" requires-python = ">=3.8" authors = [{ name = "Takashi Kitao", email = "takashi.kitao@gmail.com" }] description = "A retro game engine for Python" diff --git a/rust/pyxel-engine/Cargo.toml b/rust/pyxel-engine/Cargo.toml index 92cc683ec9..637805a26e 100755 --- a/rust/pyxel-engine/Cargo.toml +++ b/rust/pyxel-engine/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyxel-engine" -version = "2.3.4" +version = "2.3.5" authors = ["Takashi Kitao "] edition = "2021" description = "Core engine for Pyxel, a retro game engine for Python" @@ -27,7 +27,7 @@ image = "0.24" indexmap = "2.7" noise = "0.9" parking_lot = "0.12" -pyxel-platform = { path = "../pyxel-platform", version = "2.3.4" } +pyxel-platform = { path = "../pyxel-platform", version = "2.3.5" } rand = "0.9" rand_xoshiro = "0.7" semver = "1.0" diff --git a/rust/pyxel-engine/src/settings.rs b/rust/pyxel-engine/src/settings.rs index 6eaecf04bf..e38cfaecac 100755 --- a/rust/pyxel-engine/src/settings.rs +++ b/rust/pyxel-engine/src/settings.rs @@ -5,7 +5,7 @@ use crate::oscillator::{Effect, Gain, ToneIndex}; use crate::tone::{Noise, Waveform}; // System -pub const VERSION: &str = "2.3.4"; +pub const VERSION: &str = "2.3.5"; pub const BASE_DIR: &str = ".pyxel"; pub const WATCH_INFO_FILE_ENVVAR: &str = "PYXEL_WATCH_INFO_FILE"; pub const DEFAULT_TITLE: &str = "Pyxel"; diff --git a/rust/pyxel-platform/Cargo.toml b/rust/pyxel-platform/Cargo.toml index fbc1687c89..7fc44f7c32 100644 --- a/rust/pyxel-platform/Cargo.toml +++ b/rust/pyxel-platform/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyxel-platform" -version = "2.3.4" +version = "2.3.5" authors = ["Takashi Kitao "] edition = "2021" description = "Platform abstraction layer for Pyxel, a retro game engine for Python" diff --git a/rust/pyxel-wrapper/Cargo.toml b/rust/pyxel-wrapper/Cargo.toml index 5bf5e59ffd..eb4225e3e5 100644 --- a/rust/pyxel-wrapper/Cargo.toml +++ b/rust/pyxel-wrapper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyxel-wrapper" -version = "2.3.4" +version = "2.3.5" authors = ["Takashi Kitao "] edition = "2021" description = "Python extension module for Pyxel, a retro game engine for Python" @@ -14,7 +14,7 @@ crate-type = ["cdylib"] [dependencies] pyo3 = { version = "0.23", features = ["abi3-py38", "extension-module"] } -pyxel-engine = { path = "../pyxel-engine", version = "2.3.4" } +pyxel-engine = { path = "../pyxel-engine", version = "2.3.5" } [target.'cfg(not(target_os = "emscripten"))'.dependencies] sysinfo = "0.33"