Skip to content

Commit 189e758

Browse files
authored
Add missing modules and tools to releases (#913)
1 parent e334149 commit 189e758

2 files changed

Lines changed: 8 additions & 3 deletions

File tree

build.zig.zon

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,24 @@
22
.name = .microzig,
33
// Note: This should be changed if you fork microzig!
44
.fingerprint = 0x605a83a849186d0f,
5-
.version = "0.15.1",
5+
.version = "0.15.2",
66
.minimum_zig_version = "0.15.1",
77
.dependencies = .{
88
.@"build-internals" = .{ .path = "build-internals" },
99
.core = .{ .path = "core" },
1010
.drivers = .{ .path = "drivers" },
1111

1212
// tools
13+
.@"tools/esp-image" = .{ .path = "tools/esp-image" },
14+
.@"tools/printer" = .{ .path = "tools/printer" },
1315
.@"tools/regz" = .{ .path = "tools/regz" },
1416
.@"tools/uf2" = .{ .path = "tools/uf2" },
15-
.@"tools/esp-image" = .{ .path = "tools/esp-image" },
1617

1718
// modules
1819
.@"modules/foundation-libc" = .{ .path = "modules/foundation-libc" },
20+
.@"modules/freertos" = .{ .path = "modules/freertos" },
21+
.@"modules/lwip" = .{ .path = "modules/lwip" },
22+
.@"modules/network" = .{ .path = "modules/network" },
1923
.@"modules/riscv32-common" = .{ .path = "modules/riscv32-common" },
2024
.@"modules/rtt" = .{ .path = "modules/rtt" },
2125

modules/lwip/build.zig.zon

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.{
2-
.name = "lwip",
2+
.name = .lwip,
3+
.fingerprint = 0xe53048a052fbebad,
34
.version = "0.1.0",
45
.paths = .{
56
"build.zig",

0 commit comments

Comments
 (0)