Skip to content

Commit 81c7f80

Browse files
committed
release: v0.5.1
1 parent bc751ce commit 81c7f80

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

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

5+
## v0.5.1 [2024-11-29]
6+
7+
### Fixed
8+
9+
- Fixed various bugs with terminal progress bar
10+
- Fixed bug where calling remove on an installed version would quit zigverm with a `Version not installed. Quitting` message.
11+
512
## v0.5.0 [2024-11-13]
613

714
### Added

scripts/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -e
44

5-
VERSION="0.5.0"
5+
VERSION="0.5.1"
66

77
if [[ -z $ZIGVERM_ROOT_DIR ]]; then
88
ZIGVERM_ROOT_DIR=$HOME/.zigverm

src/main.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const CommonPaths = paths.CommonPaths;
1616
const Release = common.Release;
1717
const install = @import("install.zig");
1818

19-
pub const Version = "0.5.0";
19+
pub const Version = "0.5.1";
2020

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

0 commit comments

Comments
 (0)