Skip to content

Commit

Permalink
Updated the version number
Browse files Browse the repository at this point in the history
  • Loading branch information
kitao committed Dec 28, 2024
1 parent e5f20af commit c570e6d
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.8"
version = "2.2.9"
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.8"
version = "2.2.9"
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 @@ indexmap = "2.7"
noise = "0.9"
once_cell = "1.20"
parking_lot = "0.12"
pyxel-platform = { path = "../pyxel-platform", version = "2.2.8" }
pyxel-platform = { path = "../pyxel-platform", version = "2.2.9" }
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.8";
pub const VERSION: &str = "2.2.9";
pub const BASE_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.8"
version = "2.2.9"
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.8"
version = "2.2.9"
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.8" }
pyxel-engine = { path = "../pyxel-engine", version = "2.2.9" }

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

0 comments on commit c570e6d

Please sign in to comment.