diff --git a/CHANGELOG.md b/CHANGELOG.md index b37418c..1371671 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,35 @@ All notable changes to this project will be documented in this file. +## [0.1.0-rc.4] - 2023-04-15 + +### 🎵 Features + +- *(website)* Add a landing page + +### 🚜 Refactor + +- *(ci)* Remove unnecessary OS from build matrixes +- *(lib)* Extract reusable modules as packages + +### 📚 Documentation + +- *(lib)* Support auto-generation of documentation with a build flag +- *(readme)* Mention the API documentation +- *(readme)* Add documentation build badge + +### 🎨 Styling + +- *(readme)* Use HTML for the badges +- *(readme)* Fix centering the badges +- *(readme)* Center the badges + +### ⚙️ Miscellaneous Tasks + +- *(ci)* Fix the grammar for the build job +- *(pages)* Rename deploy step +- *(pages)* Add workflow for deploying documentation + ## [0.1.0-rc.3] - 2023-04-15 ### 🐛 Bug Fixes diff --git a/build.zig b/build.zig index 03f102b..3e81b00 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.3"; // managed by release.sh +const version = "0.1.0-rc.4"; // managed by release.sh /// Adds the required packages to the given executable. ///