Skip to content

Commit

Permalink
Updated the version number to 2.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
kitao committed Oct 13, 2024
1 parent 6cfc9af commit d68252d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "pyxel"
version = "2.2.4"
version = "2.2.5"
requires-python = ">=3.8"
authors = [{ name = "Takashi Kitao", email = "takashi.kitao@gmail.com" }]
description = "A retro game engine for Python"
Expand Down
4 changes: 2 additions & 2 deletions rust/pyxel-engine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyxel-engine"
version = "2.2.4"
version = "2.2.5"
authors = ["Takashi Kitao <takashi.kitao@gmail.com>"]
edition = "2021"
description = "Core engine for Pyxel, a retro game engine for Python"
Expand All @@ -27,7 +27,7 @@ noise = "0.9"
once_cell = "1.18"
parking_lot = "0.12"
platform-dirs = "0.3"
pyxel-platform = { path = "../pyxel-platform", version = "2.2.4" }
pyxel-platform = { path = "../pyxel-platform", version = "2.2.5" }
rand = "0.8"
rand_xoshiro = "0.6"
semver = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion rust/pyxel-engine/src/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use crate::oscillator::{Effect, Gain};
use crate::tone::{Noise, Waveform};

// System
pub const VERSION: &str = "2.2.4";
pub const VERSION: &str = "2.2.5";
pub const WORKING_DIR: &str = ".pyxel";
pub const WATCH_INFO_FILE_ENVVAR: &str = "PYXEL_WATCH_INFO_FILE";
pub const DEFAULT_TITLE: &str = "Pyxel";
Expand Down
2 changes: 1 addition & 1 deletion rust/pyxel-platform/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyxel-platform"
version = "2.2.4"
version = "2.2.5"
authors = ["Takashi Kitao <takashi.kitao@gmail.com>"]
edition = "2021"
description = "Platform abstraction layer for Pyxel, a retro game engine for Python"
Expand Down
4 changes: 2 additions & 2 deletions rust/pyxel-wrapper/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyxel-wrapper"
version = "2.2.4"
version = "2.2.5"
authors = ["Takashi Kitao <takashi.kitao@gmail.com>"]
edition = "2021"
description = "Python extension module for Pyxel, a retro game engine for Python"
Expand All @@ -14,7 +14,7 @@ crate-type = ["cdylib"]

[dependencies]
pyo3 = { version = "0.22", features = ["abi3-py38", "extension-module"] }
pyxel-engine = { path = "../pyxel-engine", version = "2.2.4" }
pyxel-engine = { path = "../pyxel-engine", version = "2.2.5" }

[target.'cfg(not(target_os = "emscripten"))'.dependencies]
sysinfo = "0.32"

0 comments on commit d68252d

Please sign in to comment.