This commit is contained in:
DataHearth 2022-07-10 12:39:35 +02:00
parent f576eec3c3
commit 48fef365e8
3 changed files with 13 additions and 3 deletions

View File

@ -3,6 +3,15 @@
## [Unreleased] ## [Unreleased]
<a name="v0.5.0"></a>
## [v0.5.0] - 2022-07-10
### Bug Fixes
- **git:** use go-git for adding removed file (workaround)
### Features
- **pkgs:** add more package manager
<a name="v0.4.0"></a> <a name="v0.4.0"></a>
## [v0.4.0] - 2022-06-16 ## [v0.4.0] - 2022-06-16
### Bug Fixes ### Bug Fixes
@ -71,7 +80,8 @@
- **config:** add yaml tags for yaml.v3 - **config:** add yaml tags for yaml.v3
[Unreleased]: https://github.com/DataHearth/config-mapper/compare/v0.4.0...HEAD [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.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.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 [v0.2.0]: https://github.com/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", Short: "Manage your systems configuration",
Long: `config-mapper aims to help you manage your configurations between systems Long: `config-mapper aims to help you manage your configurations between systems
with a single configuration file.`, with a single configuration file.`,
Version: "v0.4.0", Version: "v0.5.0",
} }
var initCmd = &cobra.Command{ var initCmd = &cobra.Command{
Use: "init", Use: "init",

View File

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
VERSION=v0.4.0 VERSION=v0.5.0
log() { log() {
NTR=$'\033[0m' # * Neutral NTR=$'\033[0m' # * Neutral