chore: update CHANGELOG v0.6.1

This commit is contained in:
DataHearth 2022-10-02 21:15:24 +02:00
parent 5682db8ac9
commit 7c1c71ad55
No known key found for this signature in database
GPG Key ID: E88FD356ACC5F3C4
2 changed files with 26 additions and 8 deletions

View File

@ -3,8 +3,14 @@
## [Unreleased]
<a name="v0.6.1"></a>
## [v0.6.1] - 2022-10-02
### Features
- **ssh:** add possibilty to use multiple SSH configurations
<a name="v0.6.0"></a>
## [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 @@
<a name="v0.5.0"></a>
## [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 @@
<a name="v0.4.0"></a>
## [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 @@
<a name="v0.3.0"></a>
## [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
<a name="v0.2.0"></a>
## [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
<a name="v0.1.0"></a>
## 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

View File

@ -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",