-
-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* [#539] Support GHC 9.0 in generated projects Resolves #539 * Update CHANGELOG * Fix ci setup for 9.0.2 * Apply suggestions from code review Co-authored-by: Dmitrii Kovanikov <[email protected]> * Update lts version for 8.10 * Fix * Fix stack build Co-authored-by: Dmitrii Kovanikov <[email protected]>
- Loading branch information
Showing
62 changed files
with
111 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,11 @@ | ||
resolver: lts-18.10 | ||
resolver: nightly-2022-01-10 | ||
|
||
packages: | ||
- summoner-cli/ | ||
- summoner-tui/ | ||
|
||
extra-deps: | ||
- colourista-0.1.0.1 | ||
- generic-data-0.8.0.0 | ||
- hashable-1.3.1.0 | ||
- megaparsec-9.0.1 | ||
- microaeson-0.1.0.0 | ||
- optparse-applicative-0.16.0.0 | ||
- relude-1.0.0.1 | ||
- tomland-1.3.3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ jobs: | |
- ghc: 8.6.5 | ||
- ghc: 8.8.4 | ||
- ghc: 8.10.7 | ||
- ghc: 9.0.2 | ||
|
||
install: | ||
# HLint check | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ license: BSD-3-Clause | |
license-file: LICENSE | ||
author: Kowainik | ||
maintainer: Kowainik <[email protected]> | ||
copyright: 2021 Kowainik | ||
copyright: 2022 Kowainik | ||
category: Testing | ||
build-type: Simple | ||
extra-doc-files: README.md | ||
|
@@ -20,13 +20,14 @@ tested-with: GHC == 8.4.4 | |
GHC == 8.6.5 | ||
GHC == 8.8.4 | ||
GHC == 8.10.7 | ||
GHC == 9.0.2 | ||
|
||
source-repository head | ||
type: git | ||
location: https://github.com/kowainik/cabal-full.git | ||
|
||
common common-options | ||
build-depends: base >= 4.11.1.0 && < 4.15 | ||
build-depends: base >= 4.11.1.0 && < 4.16 | ||
, relude | ||
|
||
mixins: base hiding (Prelude) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{- | | ||
Copyright: (c) 2021 Kowainik | ||
Copyright: (c) 2022 Kowainik | ||
SPDX-License-Identifier: BSD-3-Clause | ||
Maintainer: Kowainik <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,14 +8,14 @@ description: | |
license: NONE | ||
author: Kowainik | ||
maintainer: Kowainik <[email protected]> | ||
copyright: 2021 Kowainik | ||
copyright: 2022 Kowainik | ||
build-type: Simple | ||
extra-doc-files: README.md | ||
CHANGELOG.md | ||
tested-with: GHC == 8.10.7 | ||
tested-with: GHC == 9.0.2 | ||
|
||
common common-options | ||
build-depends: base ^>= 4.14.3.0 | ||
build-depends: base ^>= 4.15.1.0 | ||
|
||
ghc-options: -Wall | ||
-Wcompat | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/usr/bin/env cabal | ||
{- cabal: | ||
build-depends: | ||
, base ^>= 4.14.3.0 | ||
, base ^>= 4.15.1.0 | ||
-} | ||
|
||
main :: IO () | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ license: MIT | |
license-file: LICENSE | ||
author: Kowainik | ||
maintainer: Kowainik <[email protected]> | ||
copyright: 2021 Kowainik | ||
copyright: 2022 Kowainik | ||
category: Testing | ||
build-type: Simple | ||
extra-doc-files: README.md | ||
|
@@ -22,13 +22,14 @@ tested-with: GHC == 8.0.2 | |
GHC == 8.6.5 | ||
GHC == 8.8.4 | ||
GHC == 8.10.7 | ||
GHC == 9.0.2 | ||
|
||
source-repository head | ||
type: git | ||
location: https://github.com/kowainik/full-batteries.git | ||
|
||
common common-options | ||
build-depends: base >= 4.9.1.0 && < 4.15 | ||
build-depends: base >= 4.9.1.0 && < 4.16 | ||
, relude | ||
|
||
mixins: base hiding (Prelude) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{- | | ||
Copyright: (c) 2021 Kowainik | ||
Copyright: (c) 2022 Kowainik | ||
SPDX-License-Identifier: MIT | ||
Maintainer: Kowainik <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
resolver: lts-18.21 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
resolver: lts-18.10 | ||
resolver: nightly-2022-01-10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,7 @@ jobs: | |
- "8.6.5" | ||
- "8.8.4" | ||
- "8.10.7" | ||
- "9.0.2" | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{- | | ||
Copyright: (c) 2021 Kowainik | ||
Copyright: (c) 2022 Kowainik | ||
SPDX-License-Identifier: BSD-3-Clause | ||
Maintainer: Kowainik <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
resolver: lts-18.21 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ license: BSD-3-Clause | |
license-file: LICENSE | ||
author: Kowainik | ||
maintainer: Kowainik <[email protected]> | ||
copyright: 2021 Kowainik | ||
copyright: 2022 Kowainik | ||
category: Testing | ||
build-type: Simple | ||
extra-doc-files: README.md | ||
|
@@ -20,13 +20,14 @@ tested-with: GHC == 8.4.4 | |
GHC == 8.6.5 | ||
GHC == 8.8.4 | ||
GHC == 8.10.7 | ||
GHC == 9.0.2 | ||
|
||
source-repository head | ||
type: git | ||
location: https://github.com/kowainik/stack-full.git | ||
|
||
common common-options | ||
build-depends: base >= 4.11.1.0 && < 4.15 | ||
build-depends: base >= 4.11.1.0 && < 4.16 | ||
, relude | ||
|
||
mixins: base hiding (Prelude) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
resolver: lts-18.10 | ||
resolver: nightly-2022-01-10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/usr/bin/env stack | ||
{- stack | ||
--resolver lts-18.10 | ||
--resolver nightly-2022-01-10 | ||
script | ||
--package base | ||
-} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{- | | ||
Module : Summoner | ||
Copyright : (c) 2017-2021 Kowainik | ||
Copyright : (c) 2017-2022 Kowainik | ||
SPDX-License-Identifier : MPL-2.0 | ||
Maintainer : Kowainik <[email protected]> | ||
Stability : Stable | ||
|
Oops, something went wrong.