Skip to content

Commit bf98531

Browse files
committed
Updated the version number to 2.4.3
1 parent 8c21d51 commit bf98531

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.4.2"
7+
version = "2.4.3"
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.4.2"
3+
version = "2.4.3"
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.4.2" }
26+
pyxel-platform = { path = "../pyxel-platform", version = "2.4.3" }
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, SoundNote, SoundSpeed, SoundTone, SoundVolume};
55
use crate::tone::{ToneMode, ToneSample};
66

77
// System
8-
pub const VERSION: &str = "2.4.2";
8+
pub const VERSION: &str = "2.4.3";
99
pub const BASE_DIR: &str = ".pyxel";
1010
pub const WATCH_INFO_FILE_ENVVAR: &str = "PYXEL_WATCH_INFO_FILE";
1111
pub const DEFAULT_TITLE: &str = "Pyxel";

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.4.2"
3+
version = "2.4.3"
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.4.2"
3+
version = "2.4.3"
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.25", features = ["abi3-py38", "extension-module"] }
17-
pyxel-engine = { path = "../pyxel-engine", version = "2.4.2" }
17+
pyxel-engine = { path = "../pyxel-engine", version = "2.4.3" }
1818

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

0 commit comments

Comments
 (0)