From c63280569cd1d5691fa2dab1b0d38c69cc19f533 Mon Sep 17 00:00:00 2001 From: Denis Redozubov Date: Tue, 3 Nov 2020 18:13:08 +0300 Subject: [PATCH 1/4] Update GHC versions, include 8.8.4 --- .travis.yml | 6 ++---- stack.yaml | 2 +- validationt.cabal | 1 + 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 748581e..110c8e8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,12 +12,10 @@ cache: jobs: include: + - ghc: 8.8.4 + env: SNAPSHOT="lts-16.20" - ghc: 8.6.5 env: SNAPSHOT="lts-14.22" - - ghc: 8.6.4 - env: SNAPSHOT="lts-13.19" - - ghc: 8.6.3 - env: SNAPSHOT="lts-13.11" - ghc: 8.4.4 env: SNAPSHOT="lts-12.26" diff --git a/stack.yaml b/stack.yaml index 2819e28..6f525ed 100644 --- a/stack.yaml +++ b/stack.yaml @@ -15,7 +15,7 @@ # resolver: # name: custom-snapshot # location: "./custom-snapshot.yaml" -resolver: lts-14.21 +resolver: lts-16.20 # User packages to be built. # Various formats can be used as shown in the example below. diff --git a/validationt.cabal b/validationt.cabal index f551d80..56f3c39 100644 --- a/validationt.cabal +++ b/validationt.cabal @@ -18,6 +18,7 @@ extra-source-files: ChangeLog.md cabal-version: >=1.10 tested-with: GHC == 8.4.4 , GHC == 8.6.5 + , GHC == 8.8.4 source-repository head type: git From 7d2a999cda1cb883b8b6fa904ccafc174dfe1848 Mon Sep 17 00:00:00 2001 From: Denis Redozubov Date: Tue, 3 Nov 2020 18:19:05 +0300 Subject: [PATCH 2/4] Add ghc 8.10.2 nightly --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 110c8e8..628ad00 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,6 +12,8 @@ cache: jobs: include: + - ghc: 8.10.2 + env: SNAPSHOT="nightly-2020-11-03" - ghc: 8.8.4 env: SNAPSHOT="lts-16.20" - ghc: 8.6.5 From ff4df5464a308e7f6240e927b2c58afcc4dbea93 Mon Sep 17 00:00:00 2001 From: Denis Redozubov Date: Tue, 3 Nov 2020 18:20:03 +0300 Subject: [PATCH 3/4] Add tested ghc version in .cabal --- validationt.cabal | 1 + 1 file changed, 1 insertion(+) diff --git a/validationt.cabal b/validationt.cabal index 56f3c39..21b17a3 100644 --- a/validationt.cabal +++ b/validationt.cabal @@ -19,6 +19,7 @@ cabal-version: >=1.10 tested-with: GHC == 8.4.4 , GHC == 8.6.5 , GHC == 8.8.4 + , GHC == 8.10.2 source-repository head type: git From 8198aff672d0693da6f1ab4dd73797fd9a31263c Mon Sep 17 00:00:00 2001 From: Denis Redozubov Date: Tue, 3 Nov 2020 18:23:31 +0300 Subject: [PATCH 4/4] Fix cabal version to 0.3.0 --- validationt.cabal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validationt.cabal b/validationt.cabal index 21b17a3..c1820dc 100644 --- a/validationt.cabal +++ b/validationt.cabal @@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: validationt -version: 0.3.1 +version: 0.3.0 synopsis: Straightforward validation monad description: A simple data validation library. The main idea is to provide an easy way to validate web form data by aggregating errors for each field.