diff --git a/assets/Info.plist b/assets/Info.plist
index e6fefdb..7e81993 100644
--- a/assets/Info.plist
+++ b/assets/Info.plist
@@ -13,11 +13,11 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 1.0.0
+ 1.0.1
CFBundleSignature
????
CFBundleVersion
- 1
+ 2
CFBundleIconFile
AppIcon
CFBundleIconName
diff --git a/build.zig.zon b/build.zig.zon
index 4af2f51..7577378 100644
--- a/build.zig.zon
+++ b/build.zig.zon
@@ -9,7 +9,7 @@
.name = .UsaProject,
// This is a [Semantic Version](https://semver.org/).
// In a future version of Zig it will be used for package deduplication.
- .version = "1.0.0",
+ .version = "1.0.1",
// Together with name, this represents a globally unique package
// identifier. This field is generated by the Zig toolchain when the
// package is first created, and then *never changes*. This allows
diff --git a/src/ui.zig b/src/ui.zig
index a419109..192c239 100644
--- a/src/ui.zig
+++ b/src/ui.zig
@@ -716,7 +716,7 @@ fn drawAbout(ctx: *c.nk_context, win_w: u32, win_h: u32) void {
if (c.nk_group_begin(ctx, "about_text", c.NK_WINDOW_NO_SCROLLBAR) != 0) {
c.nk_layout_row_dynamic(ctx, 20, 1);
c.nk_label(ctx, "Usa Project", c.NK_TEXT_LEFT);
- c.nk_label(ctx, "Version: 1.0.0", c.NK_TEXT_LEFT);
+ c.nk_label(ctx, "Version: 1.0.1", c.NK_TEXT_LEFT);
c.nk_label(ctx, "Core: NP2kai 0.86", c.NK_TEXT_LEFT);
c.nk_group_end(ctx);
}