Skip to content

Commit

Permalink
Release 1.6.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sol committed Jan 19, 2021
1 parent a81d082 commit f28ba09
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 6 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: publish

on:
push:
branches:
- main

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- uses: sol/haskell-autotag@v1
id: autotag
with:
prefix: null

- run: cabal sdist

- uses: haskell-actions/[email protected]
with:
hackageToken: ${{ secrets.HACKAGE_AUTH_TOKEN }}
publish: true
if: steps.autotag.outputs.created
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
## Changes

#### 1.6.2.0

- Add support for GHC 7.0.* and 7.2.*

#### 1.6.1.0

- Add `Test.HUnit.Text.runTestTTAndExit`

#### 1.6.0.0

- Generalize return type of `assertFailure` to `IO a`
Expand Down
8 changes: 4 additions & 4 deletions HUnit.cabal
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.33.0.
-- This file has been generated from package.yaml by hpack version 0.34.3.
--
-- see: https://github.com/sol/hpack

name: HUnit
version: 1.6.1.0
version: 1.6.2.0
license: BSD3
license-file: LICENSE
author: Dean Herington
Expand All @@ -31,7 +31,7 @@ library
src
build-depends:
base ==4.*,
call-stack,
call-stack >=0.3.0,
deepseq
exposed-modules:
Test.HUnit.Base
Expand All @@ -53,7 +53,7 @@ test-suite tests
build-depends:
HUnit,
base ==4.*,
call-stack,
call-stack >=0.3.0,
deepseq,
filepath
other-modules:
Expand Down
4 changes: 2 additions & 2 deletions package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: HUnit
version: 1.6.1.0
version: 1.6.2.0
synopsis: A unit testing framework for Haskell
category: Testing
stability: stable
Expand All @@ -18,7 +18,7 @@ extra-source-files:
dependencies:
- base == 4.*
- deepseq
- call-stack
- call-stack >= 0.3.0

ghc-options: -Wall

Expand Down

0 comments on commit f28ba09

Please sign in to comment.