From 7c1c71ad556a77973b0cb35f1e01fd0d87a9458a Mon Sep 17 00:00:00 2001 From: DataHearth Date: Sun, 2 Oct 2022 21:15:24 +0200 Subject: [PATCH] chore: update CHANGELOG v0.6.1 --- CHANGELOG.md | 32 +++++++++++++++++++++++++------- cmd/cli.go | 2 +- 2 files changed, 26 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 159dc7b..45f2c89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,8 +3,14 @@ ## [Unreleased] + +## [v0.6.1] - 2022-10-02 +### Features +- **ssh:** add possibilty to use multiple SSH configurations + + -## [v0.6.0] - 2022-08-20 +## [v0.6.0] - 2022-08-21 ### Bug Fixes - **configuration:** remove installation-order default value - **items:** fix stdout when no path is available @@ -16,7 +22,7 @@ -## [v0.5.0] - 2022-08-01 +## [v0.5.0] - 2022-07-10 ### Bug Fixes - **git:** use go-git for adding removed file (workaround) @@ -25,7 +31,7 @@ -## [v0.4.0] - 2022-08-01 +## [v0.4.0] - 2022-06-16 ### Bug Fixes - **config:** don't throw error when file not available on OS - **save:** remove folder before copy (avoid unwanted files) @@ -36,15 +42,17 @@ -## [v0.3.0] - 2022-08-01 +## [v0.3.0] - 2022-06-01 ### Features - **cli:** packages are disabled by default - **sync:** add .ignore file to filter folder's content -## [v0.2.0] - 2022-08-01 +## [v0.2.0] - 2022-05-23 ### 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 @@ -54,15 +62,24 @@ ### 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-07-31 +## v0.1.0 - 2022-02-27 ### Bug Fixes - **config:** fix config path check - **copy:** use io.Copy instead of custom copy @@ -81,7 +98,8 @@ - **config:** add yaml tags for yaml.v3 -[Unreleased]: https://gitea.antoine-langlois.net/DataHearth/config-mapper/compare/v0.6.0...HEAD +[Unreleased]: https://gitea.antoine-langlois.net/DataHearth/config-mapper/compare/v0.6.1...HEAD +[v0.6.1]: https://gitea.antoine-langlois.net/DataHearth/config-mapper/compare/v0.6.0...v0.6.1 [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 diff --git a/cmd/cli.go b/cmd/cli.go index 6019f47..fe9f4a3 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.6.0", + Version: "v0.6.1", } var initCmd = &cobra.Command{ Use: "init",