Skip to content

Commit 2a231af

Browse files
committed
release v0.6.1
1 parent 9650526 commit 2a231af

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

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

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

5+
## v0.6.1 [2025-01-25]
6+
### Fixed
7+
- Fix download progress bar stuck at 99%
8+
59
## v0.6.0 [2025-01-25]
610
### Added
711
- The LICENSE and README file will now be included with each release.

build.zig.zon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.{
22
.name = "zigverm",
3-
.version = "0.6.0",
3+
.version = "0.6.1",
44
.minimum_zig_version = "0.11.0",
55

66
.dependencies = .{

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.6.0"
5+
VERSION="0.6.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.6.0";
19+
pub const Version = "0.6.1";
2020

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

0 commit comments

Comments
 (0)