Skip to content

Commit 345a877

Browse files
committed
v0.2.0
1 parent 4848e64 commit 345a877

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Add ZigXLL as a dependency in your `build.zig.zon`:
3636
```zig
3737
.dependencies = .{
3838
.xll = .{
39-
.url = "https://github.com/alexjreid/zigxll/archive/refs/tags/v0.1.0.tar.gz",
39+
.url = "https://github.com/alexjreid/zigxll/archive/refs/tags/v0.2.0.tar.gz",
4040
.hash = "...",
4141
},
4242
},

example/build.zig.zon

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
.dependencies = .{
88
.xll = .{
99
// When using a published release:
10-
// .url = "https://github.com/alexjreid/zigxll/archive/refs/tags/v0.1.0.tar.gz",
11-
// .hash = "xll-0.1.0-rzwxcRVkBAABjpooKWZMWYtv4fy4WLbm5hJnllgZPtdg",
10+
// .url = "https://github.com/alexjreid/zigxll/archive/refs/tags/v0.2.0.tar.gz",
11+
// .hash = "xll-0.2.0-<hash>",
1212
// For local development:
1313
.path = "..",
1414
},

src/framework_entry.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ pub const function_discovery = @import("function_discovery.zig");
1414
const excel_allocator = std.heap.c_allocator;
1515
var initialized = false;
1616

17-
const framework_version = "0.1.0";
17+
const framework_version = "0.2.0";
1818

1919
// Discover all functions from user's modules at comptime
2020
// Note: This expects @import("root") to have a `user_functions` declaration

0 commit comments

Comments
 (0)