diff --git a/for-upstream/common.nix b/for-upstream/common.nix index bb9de47b..8609d2bb 100644 --- a/for-upstream/common.nix +++ b/for-upstream/common.nix @@ -29,7 +29,7 @@ in type = types.string; }; package = let - version = "0.3.1"; + version = "0.3.2"; in mkOption { description = "Package containing the bin/hercules-ci-agent program"; type = types.package; diff --git a/hercules-ci-agent/CHANGELOG.md b/hercules-ci-agent/CHANGELOG.md index 9dd5f9d3..debb88e7 100644 --- a/hercules-ci-agent/CHANGELOG.md +++ b/hercules-ci-agent/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.2] - 2019-08-11 + +### Fixed + +- Deploying the agent from different system (darwin to linux) resulted into + using the wrong executable + + ## [0.3.1] - 2019-08-07 ### Changed diff --git a/hercules-ci-agent/hercules-ci-agent.cabal b/hercules-ci-agent/hercules-ci-agent.cabal index 7918c9fa..62d8cdc0 100644 --- a/hercules-ci-agent/hercules-ci-agent.cabal +++ b/hercules-ci-agent/hercules-ci-agent.cabal @@ -1,7 +1,7 @@ cabal-version: 1.12 name: hercules-ci-agent -version: 0.3.1 +version: 0.3.2 homepage: https://docs.hercules-ci.com bug-reports: https://github.com/hercules-ci/hercules-ci-agent/issues author: Hercules Labs diff --git a/hercules-ci-agent/pkg.nix b/hercules-ci-agent/pkg.nix index b21989e4..da204c43 100644 --- a/hercules-ci-agent/pkg.nix +++ b/hercules-ci-agent/pkg.nix @@ -13,7 +13,7 @@ }: mkDerivation { pname = "hercules-ci-agent"; - version = "0.3.1"; + version = "0.3.2"; src = ./hercules-ci-agent; isLibrary = true; isExecutable = true;