diff --git a/CHANGELOG.md b/CHANGELOG.md index 5506143..ec18437 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Changelog This file documents all changes made to the project and is updated before each release. +## v0.3.1 [2024-06-28] +### Fixed +- Segfault when overriding +- Architecture detection errors in install.sh on non-darwin based aarch64 systems +- Enviroment variable for root is not `ZIGVERM_ROOT_DIR` +- Potential memory issues in `CommonPaths` + ## v0.3.0 [2024-06-26] ### Added - `langref` and `std` subcommands to open the language reference and standard library for the active version or diff --git a/build.zig.zon b/build.zig.zon index 77eda2b..bb41d36 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -1,6 +1,6 @@ .{ .name = "zigverm", - .version = "0.3.0", + .version = "0.3.1", .minimum_zig_version = "0.11.0", .dependencies = .{}, diff --git a/scripts/install.sh b/scripts/install.sh index bb60237..400ce74 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -2,7 +2,7 @@ set -e -VERSION="0.3.0" +VERSION="0.3.1" if [[ -z $ZIGVERM_ROOT_DIR ]]; then ZIGVERM_ROOT_DIR=$HOME/.zigverm diff --git a/src/main.zig b/src/main.zig index 8a59ac0..ea36872 100644 --- a/src/main.zig +++ b/src/main.zig @@ -14,7 +14,7 @@ const CommonPaths = paths.CommonPaths; const Rel = common.Rel; const install = @import("install.zig"); -pub const Version = "0.3.0"; +pub const Version = "0.3.1"; pub fn main() !void { var aa = std.heap.ArenaAllocator.init(std.heap.page_allocator);