Skip to content

Commit

Permalink
hercules-ci-agent-0.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
roberth committed Nov 27, 2020
1 parent a52db62 commit 8b1f1fa
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
3 changes: 1 addition & 2 deletions for-upstream/common.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{ config, lib, pkgs, ... }:

let
inherit (lib) mkOption mkIf types filterAttrs;
inherit (pkgs.callPackage ./to-toml {}) toTOML;
Expand Down Expand Up @@ -94,7 +93,7 @@ in
type = types.str;
};
package = let
agentVersion = "0.7.4";
agentVersion = "0.7.5";
in
mkOption {
description = "Package containing the bin/hercules-ci-agent program";
Expand Down
16 changes: 16 additions & 0 deletions hercules-ci-agent/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.7.5] - 2020-11-27

### Fixed

- GHC 8.10.2 compatibility for NixOS unstable / NixOS 21.03

- Build with cachix 0.5.1. Write token support is not included due to a break configuration semantics. It will be available in >= 0.8.

### Changed

- The in-repo expressions have upgraded their dependency to NixOS 20.09

- Agent will now use `HERCULES_CI_API_BASE_URL` over `HERCULES_API_BASE_URL` if set.

- Temporarily switch to cabal tooling due to breakage. `master` continues to be stack-based.

## [0.7.4] - 2020-08-25

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion hercules-ci-agent/hercules-ci-agent.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 2.4

name: hercules-ci-agent
version: 0.7.4
version: 0.7.5
synopsis: Runs Continuous Integration tasks on your machines
category: Nix, CI, Testing, DevOps
homepage: https://docs.hercules-ci.com
Expand Down
2 changes: 1 addition & 1 deletion shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ in hs.shellFor {
pkgs.yaml2json
pkgs.jq
# hs.stack
(hs.cabal-install.overrideScope (self: super: { Cabal = self.Cabal_3_2_1_0; }))
(hs.cabal-install.overrideScope (self: super: { Cabal = self.Cabal_3_2_1_0 or super.Cabal; }))
hs.haskell-language-server

devTools.niv
Expand Down

0 comments on commit 8b1f1fa

Please sign in to comment.