1 Commits

Author SHA1 Message Date
8ff473839c Bump version to 0.1.0 2026-01-19 19:11:36 +05:30
2 changed files with 3 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
.{ .{
.name = .pugz, .name = .pugz,
.version = "0.1.1", .version = "0.1.0",
.fingerprint = 0x822db0790e17621d, // Changing this has security and trust implications. .fingerprint = 0x822db0790e17621d, // Changing this has security and trust implications.
.minimum_zig_version = "0.15.2", .minimum_zig_version = "0.15.2",
.dependencies = .{ .dependencies = .{

View File

@@ -765,11 +765,8 @@ pub const Runtime = struct {
} }
} }
// If still not found, log warning and skip this mixin call // If still not found, skip this mixin call
const mixin_def = mixin orelse { const mixin_def = mixin orelse return;
std.log.warn("mixin '{s}' not found, skipping", .{call.name});
return;
};
try self.context.pushScope(); try self.context.pushScope();
defer self.context.popScope(); defer self.context.popScope();