This commit is contained in:
DataHearth 2022-08-21 01:40:20 +02:00
parent 68f263e245
commit dd6eeb3041
No known key found for this signature in database
GPG Key ID: E88FD356ACC5F3C4
2 changed files with 24 additions and 22 deletions

View File

@ -3,8 +3,20 @@
## [Unreleased]
<a name="v0.6.0"></a>
## [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
<a name="v0.5.0"></a>
## [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 @@
<a name="v0.4.0"></a>
## [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 @@
<a name="v0.3.0"></a>
## [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
<a name="v0.2.0"></a>
## [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
<a name="v0.1.0"></a>
## 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

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.5.0",
Version: "v0.6.0",
}
var initCmd = &cobra.Command{
Use: "init",