Skip to content

Commit fa7a3ad

Browse files
committed
Updated the version number
1 parent 54e3804 commit fa7a3ad

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.3.4"
7+
version = "2.3.5"
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.3.4"
3+
version = "2.3.5"
44
authors = ["Takashi Kitao <[email protected]>"]
55
edition = "2021"
66
description = "Core engine for Pyxel, a retro game engine for Python"
@@ -27,7 +27,7 @@ image = "0.24"
2727
indexmap = "2.7"
2828
noise = "0.9"
2929
parking_lot = "0.12"
30-
pyxel-platform = { path = "../pyxel-platform", version = "2.3.4" }
30+
pyxel-platform = { path = "../pyxel-platform", version = "2.3.5" }
3131
rand = "0.9"
3232
rand_xoshiro = "0.7"
3333
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::oscillator::{Effect, Gain, ToneIndex};
55
use crate::tone::{Noise, Waveform};
66

77
// System
8-
pub const VERSION: &str = "2.3.4";
8+
pub const VERSION: &str = "2.3.5";
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.3.4"
3+
version = "2.3.5"
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.3.4"
3+
version = "2.3.5"
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.23", features = ["abi3-py38", "extension-module"] }
17-
pyxel-engine = { path = "../pyxel-engine", version = "2.3.4" }
17+
pyxel-engine = { path = "../pyxel-engine", version = "2.3.5" }
1818

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

0 commit comments

Comments
 (0)