Skip to content

Commit 550e5c8

Browse files
committed
Drop a minor release
1 parent fc2bdfc commit 550e5c8

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

emuiibo/Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

emuiibo/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "emuiibo"
3-
version = "1.1.0"
3+
version = "1.1.1"
44
authors = ["XorTroll"]
55
edition = "2021"
66

emuiibo/src/emu.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ pub const IS_DEV_BUILD: bool = true;
4040
#[cfg(not(debug_assertions))]
4141
pub const IS_DEV_BUILD: bool = false;
4242

43-
pub const CURRENT_VERSION: Version = Version::from(1, 1, 0, IS_DEV_BUILD);
43+
pub const CURRENT_VERSION: Version = Version::from(1, 1, 1, IS_DEV_BUILD);
4444

4545
static mut G_EMULATION_STATUS: sync::Locked<EmulationStatus> = sync::Locked::new(false, EmulationStatus::Off);
4646
static mut G_ACTIVE_VIRTUAL_AMIIBO_STATUS: sync::Locked<VirtualAmiiboStatus> = sync::Locked::new(false, VirtualAmiiboStatus::Invalid);

emuiigen/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<groupId>com.xortroll.emuiibo.emuiigen</groupId>
99
<artifactId>emuiigen</artifactId>
1010

11-
<version>1.1.0</version>
11+
<version>1.1.1</version>
1212
<name>emuiigen</name>
1313

1414
<properties>

overlay/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ include $(DEVKITPRO)/libnx/switch_rules
4040
APP_TITLE := emuiibo
4141
VER_MAJOR := 1
4242
VER_MINOR := 1
43-
VER_MICRO := 0
43+
VER_MICRO := 1
4444
APP_VERSION := $(VER_MAJOR).$(VER_MINOR).$(VER_MICRO)
4545
TARGET := $(APP_TITLE)
4646
BUILD := build

0 commit comments

Comments
 (0)