diff --git a/changelog.md b/changelog.md index a64bd84..ac3aeeb 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,20 @@ All notable changes to this project will be documented in this file. +## [0.6.0] - 2025-02-04 + +### 🚀 Features + +- *(cli)* Add check command + +### 🚜 Refactor + +- *(packagemanager,cli,tui)* Move packages in specific subfolders + +### 📚 Documentation + +- *(cli)* Update version + ## [0.5.0] - 2025-01-24 ### 🚀 Features diff --git a/cmd/cmd.go b/cmd/cmd.go index 796c07a..92de0c4 100644 --- a/cmd/cmd.go +++ b/cmd/cmd.go @@ -14,7 +14,7 @@ import ( var RootCmd = &cobra.Command{ Use: "system_setup_tool", Short: "Installs packages based on TOML configuration", - Version: "0.6.0-alpha", + Version: "0.6.0", Run: tui.Run, }