From 86bbfc48a0e0b117ab693cdf6c0e6bb40c60c46d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Thu, 29 Jun 2023 20:33:54 +0300 Subject: [PATCH] chore(release): prepare for v0.1.4 --- CHANGELOG.md | 12 ++++++++++++ build.zig | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1cb8178..2b628b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ All notable changes to this project will be documented in this file. +## [0.1.4] - 2023-06-29 + +### 🚜 Refactor + +- *(build)* Use Builder's fmt function to avoid using allocator +- *(build)* Use built-in allocator + +### 📚 Documentation + +- *(readme)* Add installation instruction for Void Linux +- *(readme)* Simplify the Docker command + ## [0.1.3] - 2023-04-19 ### 🎵 Features diff --git a/build.zig b/build.zig index 936cd7b..77d2dea 100644 --- a/build.zig +++ b/build.zig @@ -4,7 +4,7 @@ const std = @import("std"); const exe_name = "linuxwave"; /// Version. -const version = "0.1.3"; // managed by release.sh +const version = "0.1.4"; // managed by release.sh /// Adds the required packages to the given executable. ///