Skip to content

Commit

Permalink
Updated the version
Browse files Browse the repository at this point in the history
  • Loading branch information
kitao committed Jan 22, 2022
1 parent b4606d6 commit 7718ea6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/engine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyxel-engine"
version = "1.6.6"
version = "1.6.7"
authors = ["Takashi Kitao <takashi.kitao@gmail.com>"]
edition = "2021"
description = "Core engine for Pyxel, a retro game engine for Python"
Expand Down
2 changes: 1 addition & 1 deletion lib/engine/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.6.6";
pub const PYXEL_VERSION: &str = "1.6.7";
pub const PYXEL_WORKING_DIR: &str = "~/.pyxel";
pub const DEFAULT_TITLE: &str = "Pyxel";
pub const DEFAULT_FPS: u32 = 30;
Expand Down
2 changes: 1 addition & 1 deletion lib/setup.iss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#define PyxelVersion "1.6.6"
#define PyxelVersion "1.6.7"

[Setup]
AppName=Pyxel
Expand Down
4 changes: 2 additions & 2 deletions lib/wrapper/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyxel-wrapper"
version = "1.6.6"
version = "1.6.7"
authors = ["Takashi Kitao <takashi.kitao@gmail.com>"]
edition = "2021"
description = "Python wrapper for Pyxel, a retro game engine for Python"
Expand All @@ -15,4 +15,4 @@ crate-type = ["cdylib"]

[dependencies]
pyo3 = { version = "0.15.1", features = ["abi3-py37", "extension-module"] }
pyxel-engine = { path = "../engine", version="1.6.6" }
pyxel-engine = { path = "../engine", version="1.6.7" }
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

setuptools.setup(
name="pyxel",
version="1.6.6",
version="1.6.7",
description="A retro game engine for Python",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 7718ea6

Please sign in to comment.