File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff 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 },
Original file line number Diff line number Diff line change 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 = .{},
Original file line number Diff line number Diff line change 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
1313const std = @import ("std" );
1414
15- pub const VERSION = "1.2.1 " ;
15+ pub const VERSION = "1.3.0 " ;
1616pub const SEMANTIC_VERSION = std .SemanticVersion .parse (VERSION ) catch unreachable ;
1717
1818/// Profiler struct that tracks memory allocations and deallocations.
You can’t perform that action at this time.
0 commit comments