diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d62d8c..159dc7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,8 +3,20 @@ ## [Unreleased] + +## [v0.6.0] - 2022-08-20 +### Bug Fixes +- **configuration:** remove installation-order default value +- **items:** fix stdout when no path is available +- **pkgs:** update command building +- **pkgs:** add pkg manager validation check and parsing cli arguments + +### Features +- **packages:** add nala package manager + + -## [v0.5.0] - 2022-07-10 +## [v0.5.0] - 2022-08-01 ### Bug Fixes - **git:** use go-git for adding removed file (workaround) @@ -13,7 +25,7 @@ -## [v0.4.0] - 2022-06-16 +## [v0.4.0] - 2022-08-01 ### Bug Fixes - **config:** don't throw error when file not available on OS - **save:** remove folder before copy (avoid unwanted files) @@ -24,17 +36,15 @@ -## [v0.3.0] - 2022-06-01 +## [v0.3.0] - 2022-08-01 ### Features - **cli:** packages are disabled by default - **sync:** add .ignore file to filter folder's content -## [v0.2.0] - 2022-05-23 +## [v0.2.0] - 2022-08-01 ### Bug Fixes -- **config:** fix config path check -- **copy:** use io.Copy instead of custom copy - **git:** use git binary for "git add" - **git:** deleted files are not pushed - **git:** add error handling and repo URL from config @@ -44,24 +54,15 @@ ### Code Refactoring - **archi:** reduce base code to one struct - **cli:** separate functions from CLI for lisibility -- **config:** unmarshal configuration instead of raw read - **logging:** drop pterm ### Features -- **cli:** add configuration-file persistant flag - **cli:** add git push option with message -- **cli:** add save and load features -- **cli:** add init sub-command -- **cli:** add copy folder -- **cli:** add save command -- **cli:** implement pkgs installation -- **config:** update git configuration -- **config:** add yaml tags for yaml.v3 - **index:** add indexing system -## v0.1.0 - 2022-02-27 +## v0.1.0 - 2022-07-31 ### Bug Fixes - **config:** fix config path check - **copy:** use io.Copy instead of custom copy @@ -80,8 +81,9 @@ - **config:** add yaml tags for yaml.v3 -[Unreleased]: https://github.com/DataHearth/config-mapper/compare/v0.5.0...HEAD -[v0.5.0]: https://github.com/DataHearth/config-mapper/compare/v0.4.0...v0.5.0 -[v0.4.0]: https://github.com/DataHearth/config-mapper/compare/v0.3.0...v0.4.0 -[v0.3.0]: https://github.com/DataHearth/config-mapper/compare/v0.2.0...v0.3.0 -[v0.2.0]: https://github.com/DataHearth/config-mapper/compare/v0.1.0...v0.2.0 +[Unreleased]: https://gitea.antoine-langlois.net/DataHearth/config-mapper/compare/v0.6.0...HEAD +[v0.6.0]: https://gitea.antoine-langlois.net/DataHearth/config-mapper/compare/v0.5.0...v0.6.0 +[v0.5.0]: https://gitea.antoine-langlois.net/DataHearth/config-mapper/compare/v0.4.0...v0.5.0 +[v0.4.0]: https://gitea.antoine-langlois.net/DataHearth/config-mapper/compare/v0.3.0...v0.4.0 +[v0.3.0]: https://gitea.antoine-langlois.net/DataHearth/config-mapper/compare/v0.2.0...v0.3.0 +[v0.2.0]: https://gitea.antoine-langlois.net/DataHearth/config-mapper/compare/v0.1.0...v0.2.0 diff --git a/cmd/cli.go b/cmd/cli.go index 906ad35..6eb3123 100644 --- a/cmd/cli.go +++ b/cmd/cli.go @@ -24,7 +24,7 @@ var rootCmd = &cobra.Command{ Short: "Manage your systems configuration", Long: `config-mapper aims to help you manage your configurations between systems with a single configuration file.`, - Version: "v0.5.0", + Version: "v0.6.0", } var initCmd = &cobra.Command{ Use: "init",