diff --git a/assets/Info.plist b/assets/Info.plist
index 7383ae9..e947f0f 100644
--- a/assets/Info.plist
+++ b/assets/Info.plist
@@ -13,7 +13,7 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 0.2.0
+ 1.0.0
CFBundleSignature
????
CFBundleVersion
diff --git a/build.zig.zon b/build.zig.zon
index c357525..4af2f51 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 = "0.2.0",
+ .version = "1.0.0",
// 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 4ee66fd..c72404e 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: 0.2.0", c.NK_TEXT_LEFT);
+ c.nk_label(ctx, "Version: 1.0.0", c.NK_TEXT_LEFT);
c.nk_label(ctx, "Core: NP2kai 0.86", c.NK_TEXT_LEFT);
c.nk_group_end(ctx);
}