From 5bf601d7bb763c1985ba8089e2e00119b40d8d80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Mon, 17 Apr 2023 12:10:56 +0300 Subject: [PATCH] chore(release): prepare for v0.1.0 --- CHANGELOG.md | 21 +++++++++++++++++++++ build.zig | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1371671..836f1dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,27 @@ All notable changes to this project will be documented in this file. +## [0.1.0] - 2023-04-17 + +### 🎵 Features + +- *(docs)* Add a man page + +### 🚜 Refactor + +- *(ci)* Remove unnecessary node options + +### 📚 Documentation + +- *(readme)* Add demo link +- *(readme)* Add motivation section +- *(website)* Add demo link to website + +### 🎨 Styling + +- *(readme)* Set the alignment to center for demo link +- *(readme)* Center the demo text + ## [0.1.0-rc.4] - 2023-04-15 ### 🎵 Features diff --git a/build.zig b/build.zig index 3e81b00..85e082d 100644 --- a/build.zig +++ b/build.zig @@ -4,7 +4,7 @@ const std = @import("std"); const exe_name = "linuxwave"; /// Version. -const version = "0.1.0-rc.4"; // managed by release.sh +const version = "0.1.0"; // managed by release.sh /// Adds the required packages to the given executable. ///