Skip to content

Commit

Permalink
Drop a minor release
Browse files Browse the repository at this point in the history
  • Loading branch information
XorTroll committed Sep 2, 2023
1 parent fc2bdfc commit 550e5c8
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions emuiibo/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion emuiibo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "emuiibo"
version = "1.1.0"
version = "1.1.1"
authors = ["XorTroll"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion emuiibo/src/emu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ pub const IS_DEV_BUILD: bool = true;
#[cfg(not(debug_assertions))]
pub const IS_DEV_BUILD: bool = false;

pub const CURRENT_VERSION: Version = Version::from(1, 1, 0, IS_DEV_BUILD);
pub const CURRENT_VERSION: Version = Version::from(1, 1, 1, IS_DEV_BUILD);

static mut G_EMULATION_STATUS: sync::Locked<EmulationStatus> = sync::Locked::new(false, EmulationStatus::Off);
static mut G_ACTIVE_VIRTUAL_AMIIBO_STATUS: sync::Locked<VirtualAmiiboStatus> = sync::Locked::new(false, VirtualAmiiboStatus::Invalid);
Expand Down
2 changes: 1 addition & 1 deletion emuiigen/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<groupId>com.xortroll.emuiibo.emuiigen</groupId>
<artifactId>emuiigen</artifactId>

<version>1.1.0</version>
<version>1.1.1</version>
<name>emuiigen</name>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion overlay/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ include $(DEVKITPRO)/libnx/switch_rules
APP_TITLE := emuiibo
VER_MAJOR := 1
VER_MINOR := 1
VER_MICRO := 0
VER_MICRO := 1
APP_VERSION := $(VER_MAJOR).$(VER_MINOR).$(VER_MICRO)
TARGET := $(APP_TITLE)
BUILD := build
Expand Down

0 comments on commit 550e5c8

Please sign in to comment.