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 Mar 19, 2024
1 parent 33a0e42 commit 762e047
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion 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.0.8"
version = "2.0.9"
requires-python = ">=3.7"
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.0.8"
version = "2.0.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 @@ noise = "0.7"
once_cell = "1.18"
parking_lot = "0.12"
platform-dirs = "0.3"
pyxel-platform = { path = "../pyxel-platform", version = "2.0.8" }
pyxel-platform = { path = "../pyxel-platform", version = "2.0.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.0.8";
pub const VERSION: &str = "2.0.9";
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.0.8"
version = "2.0.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.0.8"
version = "2.0.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.20", features = ["abi3-py37", "extension-module"] }
pyxel-engine = { path = "../pyxel-engine", version = "2.0.8" }
pyxel-engine = { path = "../pyxel-engine", version = "2.0.9" }

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

0 comments on commit 762e047

Please sign in to comment.