Skip to content

Commit

Permalink
release: v0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AMythicDev committed Nov 29, 2024
1 parent bc751ce commit 81c7f80
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

This file documents all changes made to the project and is updated before each release.

## v0.5.1 [2024-11-29]

### Fixed

- Fixed various bugs with terminal progress bar
- Fixed bug where calling remove on an installed version would quit zigverm with a `Version not installed. Quitting` message.

## v0.5.0 [2024-11-13]

### Added
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.5.0"
VERSION="0.5.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 @@ -16,7 +16,7 @@ const CommonPaths = paths.CommonPaths;
const Release = common.Release;
const install = @import("install.zig");

pub const Version = "0.5.0";
pub const Version = "0.5.1";

pub fn main() !void {
var aa = std.heap.ArenaAllocator.init(std.heap.page_allocator);
Expand Down

0 comments on commit 81c7f80

Please sign in to comment.