diff --git a/.github/workflows/binary-release.yml b/.github/workflows/binary-release.yml index 79666a6..b9484b7 100644 --- a/.github/workflows/binary-release.yml +++ b/.github/workflows/binary-release.yml @@ -18,10 +18,10 @@ jobs: go-version: 'stable' - run: go version - - uses: goreleaser/goreleaser-action@v5 + - uses: goreleaser/goreleaser-action@v6 with: distribution: goreleaser - version: latest + version: '~> v2' args: release --clean env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f7961e..d98a944 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Change Log All notable changes to this project will be documented in this file. +## [v2.0.3] - 2024-09- +### Fixed +- `ARP_STRS_JOINED` should be empty in config file + ## [v2.0.2] - 2024-09-07 ### Added - Remember Refresh setting in browser [#123](https://github.com/aceberg/WatchYourLAN/issues/123) diff --git a/internal/conf/getconfig.go b/internal/conf/getconfig.go index 2a8b591..19da7cb 100644 --- a/internal/conf/getconfig.go +++ b/internal/conf/getconfig.go @@ -87,6 +87,7 @@ func Write(config models.Conf) { viper.Set("LOG_LEVEL", config.LogLevel) viper.Set("ARP_ARGS", config.ArpArgs) viper.Set("ARP_STRS", config.ArpStrs) + viper.Set("ARP_STRS_JOINED", "") // Can be set only with ENV viper.Set("IFACES", config.Ifaces) viper.Set("TIMEOUT", config.Timeout) viper.Set("TRIM_HIST", config.TrimHist)