Skip to content

Commit 5f4e3a5

Browse files
chore(version): bump to 0.2.0
1 parent 6967597 commit 5f4e3a5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

benchmarks/common/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "protomq-benchmarks"
7-
version = "0.1.0"
7+
version = "0.2.0"
88
description = "ProtoMQ benchmark utilities"
99
requires-python = ">=3.11"
1010
dependencies = [

build.zig.zon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
.name = .protomq,
1010
// This is a [Semantic Version](https://semver.org/).
1111
// In a future version of Zig it will be used for package deduplication.
12-
.version = "0.1.0",
12+
.version = "0.2.0",
1313
// Together with name, this represents a globally unique package
1414
// identifier. This field is generated by the Zig toolchain when the
1515
// package is first created, and then *never changes*. This allows

src/main.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ pub fn main() !void {
99
const allocator = gpa.allocator();
1010

1111
std.debug.print("ProtoMQ Server Starting...\n", .{});
12-
std.debug.print("Version: 0.1.0\n", .{});
12+
std.debug.print("Version: 0.2.0\n", .{});
1313
std.debug.print("Zig Version: {s}\n\n", .{@import("builtin").zig_version_string});
1414

1515
// Create and start TCP server

0 commit comments

Comments
 (0)