-
-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Prepare release 1.1.0.0 * Use GHC 8.10.7 with stack
- Loading branch information
Showing
65 changed files
with
544 additions
and
398 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
commit-message: | ||
prefix: "GA" | ||
include: "scope" | ||
labels: | ||
- "CI" | ||
- "dependencies" |
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
## This is the configuration file for Headroom. | ||
## See https://github.com/vaclavsvejcar/headroom for more details. | ||
version: 0.4.0.0 | ||
|
||
run-mode: replace | ||
|
||
source-paths: | ||
- src/ | ||
|
||
excluded-paths: [] | ||
|
||
template-paths: | ||
- https://raw.githubusercontent.com/kowainik/org/main/headroom-templates/haskell.mustache | ||
|
||
variables: | ||
author: Kowainik | ||
email: [email protected] | ||
_haskell_module_copyright: "(c) {{ _current_year }} {{ author }}" | ||
|
||
license-headers: | ||
haskell: | ||
put-after: ["^{-#"] | ||
margin-bottom-code: 1 | ||
margin-top-code: 1 | ||
block-comment: | ||
starts-with: ^{- \| | ||
ends-with: (?<!#)-}$ | ||
|
||
post-process: | ||
update-copyright: | ||
enabled: true | ||
config: | ||
selected-authors-only: ["{{ author }}"] |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,13 +1,14 @@ | ||
{-# LANGUAGE Safe #-} | ||
|
||
{- | | ||
Copyright: (c) 2016 Stephen Diehl | ||
(c) 2016-2018 Serokell | ||
(c) 2018-2021 Kowainik | ||
SPDX-License-Identifier: MIT | ||
Maintainer: Kowainik <[email protected]> | ||
Stability: Stable | ||
Portability: Portable | ||
Module : Relude | ||
Copyright : (c) 2016 Stephen Diehl | ||
(c) 2016-2018 Serokell | ||
(c) 2018-2022 Kowainik | ||
SPDX-License-Identifier : MIT | ||
Maintainer : Kowainik <[email protected]> | ||
Stability : Stable | ||
Portability : Portable | ||
@relude@ is a safe, performant, user-friendly and lightweight Haskell | ||
standard library. | ||
|
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,13 +1,14 @@ | ||
{-# LANGUAGE Safe #-} | ||
|
||
{- | | ||
Copyright: (c) 2016 Stephen Diehl | ||
(c) 2016-2018 Serokell | ||
(c) 2018-2021 Kowainik | ||
SPDX-License-Identifier: MIT | ||
Maintainer: Kowainik <[email protected]> | ||
Stability: Stable | ||
Portability: Portable | ||
Module : Relude.Applicative | ||
Copyright : (c) 2016 Stephen Diehl | ||
(c) 2016-2018 Serokell | ||
(c) 2018-2022 Kowainik | ||
SPDX-License-Identifier : MIT | ||
Maintainer : Kowainik <[email protected]> | ||
Stability : Stable | ||
Portability : Portable | ||
This module contains reexports of 'Applicative' and related functional. | ||
Additionally, it provides convenient combinators to work with 'Applicative'. | ||
|
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,13 +1,14 @@ | ||
{-# LANGUAGE Trustworthy #-} | ||
|
||
{- | | ||
Copyright: (c) 2016 Stephen Diehl | ||
(c) 2016-2018 Serokell | ||
(c) 2018-2021 Kowainik | ||
SPDX-License-Identifier: MIT | ||
Maintainer: Kowainik <[email protected]> | ||
Stability: Stable | ||
Portability: Portable | ||
Module : Relude.Base | ||
Copyright : (c) 2016 Stephen Diehl | ||
(c) 2016-2018 Serokell | ||
(c) 2018-2022 Kowainik | ||
SPDX-License-Identifier : MIT | ||
Maintainer : Kowainik <[email protected]> | ||
Stability : Stable | ||
Portability : Portable | ||
Reexports from @Data.*@ and @GHC.*@ modules of | ||
<https://hackage.haskell.org/package/base base> package. | ||
|
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,13 +1,14 @@ | ||
{-# LANGUAGE Safe #-} | ||
|
||
{- | | ||
Copyright: (c) 2016 Stephen Diehl | ||
(c) 2016-2018 Serokell | ||
(c) 2018-2021 Kowainik | ||
SPDX-License-Identifier: MIT | ||
Maintainer: Kowainik <[email protected]> | ||
Stability: Stable | ||
Portability: Portable | ||
Module : Relude.Bool | ||
Copyright : (c) 2016 Stephen Diehl | ||
(c) 2016-2018 Serokell | ||
(c) 2018-2022 Kowainik | ||
SPDX-License-Identifier : MIT | ||
Maintainer : Kowainik <[email protected]> | ||
Stability : Stable | ||
Portability : Portable | ||
Convenient commonly used and very helpful functions to work with 'Bool' and also | ||
with monads. | ||
|
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,13 +1,14 @@ | ||
{-# LANGUAGE Safe #-} | ||
|
||
{- | | ||
Copyright: (c) 2016 Stephen Diehl | ||
(c) 2016-2018 Serokell | ||
(c) 2018-2021 Kowainik | ||
SPDX-License-Identifier: MIT | ||
Maintainer: Kowainik <[email protected]> | ||
Stability: Stable | ||
Portability: Portable | ||
Module : Relude.Bool.Guard | ||
Copyright : (c) 2016 Stephen Diehl | ||
(c) 2016-2018 Serokell | ||
(c) 2018-2022 Kowainik | ||
SPDX-License-Identifier : MIT | ||
Maintainer : Kowainik <[email protected]> | ||
Stability : Stable | ||
Portability : Portable | ||
Monadic boolean combinators. | ||
-} | ||
|
Oops, something went wrong.