Skip to content

Commit

Permalink
Updated the version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
kitao committed Oct 10, 2022
1 parent 6b6f509 commit 35972d4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion crates/pyxel-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyxel-core"
version = "1.8.16"
version = "1.8.17"
authors = ["Takashi Kitao <[email protected]>"]
edition = "2021"
description = "Core engine for Pyxel, a retro game engine for Python"
Expand Down
2 changes: 1 addition & 1 deletion crates/pyxel-core/src/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use crate::key::KEY_ESCAPE;
use crate::types::{Color, Effect, Key, Note, Rgb8, Speed, Tone, Volume};

// System
pub const PYXEL_VERSION: &str = "1.8.16";
pub const PYXEL_VERSION: &str = "1.8.17";
pub const PYXEL_WORKING_DIR: &str = ".pyxel";
pub const DEFAULT_TITLE: &str = "Pyxel";
pub const DEFAULT_FPS: u32 = 30;
Expand Down
4 changes: 2 additions & 2 deletions crates/pyxel-extension/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyxel-extension"
version = "1.8.16"
version = "1.8.17"
authors = ["Takashi Kitao <[email protected]>"]
edition = "2021"
description = "Python extension module for Pyxel, a retro game engine for Python"
Expand All @@ -16,7 +16,7 @@ crate-type = ["cdylib"]

[dependencies]
pyo3 = { version = "0.16", features = ["abi3-py37", "extension-module"] }
pyxel-core = { path = "../pyxel-core", version = "1.8.16" }
pyxel-core = { path = "../pyxel-core", version = "1.8.17" }

[target.'cfg(not(target_os = "emscripten"))'.dependencies]
sysinfo = "0.23"
Expand Down
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 = "1.8.16"
version = "1.8.17"
description = "A retro game engine for Python"
readme = "docs/README-abspath.md"
requires-python = ">=3.7"
Expand Down

0 comments on commit 35972d4

Please sign in to comment.