Skip to content

Commit

Permalink
release: v0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AMythicDev committed Jun 28, 2024
1 parent ed90fd5 commit 89ae7cb
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion build.zig.zon
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.{
.name = "zigverm",
.version = "0.3.0",
.version = "0.3.1",
.minimum_zig_version = "0.11.0",

.dependencies = .{},
Expand Down
2 changes: 1 addition & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/main.zig
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 89ae7cb

Please sign in to comment.