Skip to content

Commit 3313f27

Browse files
committed
Updated the version number
1 parent 431fa06 commit 3313f27

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "pyxel"
7-
version = "2.5.6"
7+
version = "2.5.7"
88
requires-python = ">=3.8"
99
authors = [{ name = "Takashi Kitao", email = "[email protected]" }]
1010
description = "A retro game engine for Python"

rust/pyxel-engine/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyxel-engine"
3-
version = "2.5.6"
3+
version = "2.5.7"
44
authors = ["Takashi Kitao <[email protected]>"]
55
edition = "2021"
66
description = "Core engine for Pyxel, a retro game engine for Python"
@@ -23,7 +23,7 @@ image = "0.25"
2323
indexmap = "2.7"
2424
noise = "0.9"
2525
parking_lot = "0.12"
26-
pyxel-platform = { path = "../pyxel-platform", version = "2.5.6" }
26+
pyxel-platform = { path = "../pyxel-platform", version = "2.5.7" }
2727
rand = "0.9"
2828
rand_xoshiro = "0.7"
2929
semver = "1.0"

rust/pyxel-engine/src/settings.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use crate::sound::{SoundEffect, SoundSpeed, SoundTone, SoundVolume};
55
use crate::tone::{ToneMode, ToneSample};
66

77
// System
8-
pub const VERSION: &str = "2.5.6";
8+
pub const VERSION: &str = "2.5.7";
99
pub const BASE_DIR: &str = ".pyxel";
1010
pub const WINDOW_STATE_ENV: &str = "PYXEL_WINDOW_STATE";
1111
pub const WATCH_STATE_FILE_ENV: &str = "PYXEL_WATCH_STATE_FILE";

rust/pyxel-platform/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyxel-platform"
3-
version = "2.5.6"
3+
version = "2.5.7"
44
authors = ["Takashi Kitao <[email protected]>"]
55
edition = "2021"
66
description = "Platform abstraction layer for Pyxel, a retro game engine for Python"

rust/pyxel-wrapper/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyxel-wrapper"
3-
version = "2.5.6"
3+
version = "2.5.7"
44
authors = ["Takashi Kitao <[email protected]>"]
55
edition = "2021"
66
description = "Python extension module for Pyxel, a retro game engine for Python"
@@ -14,7 +14,7 @@ crate-type = ["cdylib"]
1414

1515
[dependencies]
1616
pyo3 = { version = "0.26", features = ["abi3-py38", "extension-module"] }
17-
pyxel-engine = { path = "../pyxel-engine", version = "2.5.6" }
17+
pyxel-engine = { path = "../pyxel-engine", version = "2.5.7" }
1818

1919
[target.'cfg(not(target_os = "emscripten"))'.dependencies]
2020
sysinfo = "0.36"

0 commit comments

Comments
 (0)