Skip to content

Commit dca090d

Browse files
committed
release 1.3.0
1 parent bcb4f40 commit dca090d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ Add `Zprof` to your project's `build.zig.zon`:
4040
```zig
4141
.{
4242
.name = "my-project",
43-
.version = "1.2.1",
43+
.version = "1.3.0",
4444
.dependencies = .{
4545
.zprof = .{
46-
.url = "https://github.com/ANDRVV/zprof/archive/v1.2.1.zip",
46+
.url = "https://github.com/ANDRVV/zprof/archive/v1.3.0.zip",
4747
.hash = "...",
4848
},
4949
},

build.zig.zon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.{
22
.name = .zprof,
3-
.version = "1.2.1",
3+
.version = "1.3.0",
44
.fingerprint = 0xfbea0d44d0b7267,
55
.minimum_zig_version = "0.15.0",
66
.dependencies = .{},

src/zprof.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
//! memory profiler that helps you track
77
//! allocations, detect memory leaks,
88
//! and logs memory changes.
9-
//! Version 1.2.1
9+
//! Version 1.3.0
1010
//!
1111
//! Original repository: https://github.com/andrvv/zprof
1212

1313
const std = @import("std");
1414

15-
pub const VERSION = "1.2.1";
15+
pub const VERSION = "1.3.0";
1616
pub const SEMANTIC_VERSION = std.SemanticVersion.parse(VERSION) catch unreachable;
1717

1818
/// Profiler struct that tracks memory allocations and deallocations.

0 commit comments

Comments
 (0)