From 3a89b233e053e48925ba5171d5738de9b7835699 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Mon, 21 Oct 2024 00:41:49 +0300 Subject: [PATCH] chore(release): prepare for v0.2.0 --- CHANGELOG.md | 14 ++++++++++++++ build.zig | 2 +- cliff.toml | 1 + 3 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5cae69e..9c7868f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ All notable changes to this project will be documented in this file. +## [0.2.0] - 2024-10-20 + +### ๐ŸŽต Features + +- *(uncategorized)* [**breaking**] Rewrite for Zig 0.12/0.13 ([#28](https://github.com/orhun/linuxwave/issues/28)) + +### ๐Ÿ› Bug Fixes + +- *(test)* Add back `main` test ([#30](https://github.com/orhun/linuxwave/issues/30)) + +### โš™๏ธ Miscellaneous Tasks + +- *(website)* Update tracking link + ## [0.1.5] - 2023-07-21 ### ๐Ÿ“š Documentation diff --git a/build.zig b/build.zig index 4375621..06b9ab2 100644 --- a/build.zig +++ b/build.zig @@ -4,7 +4,7 @@ const std = @import("std"); const exe_name = "linuxwave"; /// Version. -const version = "0.1.5"; // managed by release.sh +const version = "0.2.0"; // managed by release.sh /// Adds the required packages to the given executable. /// diff --git a/cliff.toml b/cliff.toml index 550b07d..0e7b3d9 100644 --- a/cliff.toml +++ b/cliff.toml @@ -60,6 +60,7 @@ commit_parsers = [ { message = "^style", group = "๐ŸŽจ Styling" }, { message = "^test", group = "๐Ÿงช Testing" }, { message = "^chore\\(release\\): prepare for", skip = true }, + { message = "^chore\\(deps\\):", skip = true }, { message = "^chore\\(pr\\)", skip = true }, { message = "^chore\\(pull\\)", skip = true }, { message = "^chore", group = "โš™๏ธ Miscellaneous Tasks" },