Improve travis and docs (#137)

* Improve travis and docs

* Update stack.yaml
This commit is contained in:
Dmitrii Kovanikov 2019-02-04 13:56:17 +08:00 committed by Veronika Romashkina
parent 8d3a0e6908
commit 57c865d625
60 changed files with 172 additions and 206 deletions

View File

@ -4,92 +4,50 @@ language: haskell
git:
depth: 5
cabal: "2.0"
cache:
directories:
- "$HOME/.cabal"
- "$HOME/.ghc"
- "$HOME/.cabal/store"
- "$HOME/.stack"
- "$TRAVIS_BUILD_DIR/.stack-work"
matrix:
include:
# Cabal
- ghc: 8.0.2
env: GHCVER='8.0.2' CABALVER='head'
os: linux
addons:
apt:
sources:
- hvr-ghc
packages:
- ghc-8.0.2
- cabal-install-head
- ghc: 8.2.2
env: GHCVER='8.2.2' CABALVER='head'
os: linux
addons:
apt:
sources:
- hvr-ghc
packages:
- ghc-8.2.2
- cabal-install-head
- ghc: 8.4.4
- ghc: 8.6.3
- ghc: 8.4.3
env: GHCVER='8.4.3' CABALVER='head'
os: linux
addons:
apt:
sources:
- hvr-ghc
packages:
- ghc-8.4.3
- cabal-install-head
- ghc: 8.6.1
env: GHCVER='8.6.1' CABALVER='head'
os: linux
addons:
apt:
sources:
- hvr-ghc
packages:
- ghc-8.6.1
- cabal-install-head
- ghc: 8.4.3
# stack
- ghc: 8.6.3
env: STACK_YAML="$TRAVIS_BUILD_DIR/stack.yaml"
os: linux
addons:
apt:
packages:
- libgmp-dev
install:
- |
if [ -z "$STACK_YAML" ]; then
export PATH="/opt/ghc/$GHCVER/bin:/opt/cabal/$CABALVER/bin:$PATH"
echo $PATH
ghc --version
cabal --version
cabal new-update
cabal new-build --enable-tests --enable-benchmarks
else
echo "$TRAVIS_BUILD_DIR"
mkdir -p ~/.local/bin
export PATH="$HOME/.local/bin:$PATH"
travis_retry curl -L 'https://www.stackage.org/stack/linux-x86_64' | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'
# install stack
curl -sSL https://get.haskellstack.org/ | sh
# build project with stack
stack --version
stack setup --no-terminal
stack ghc -- --version
stack build --only-dependencies --no-terminal
stack build --system-ghc --test --bench --no-run-tests --no-run-benchmarks
fi
script:
- |
if [ -z "$STACK_YAML" ]; then
cabal new-test
cabal new-haddock
else
stack build --test --bench --no-run-tests --no-run-benchmarks --no-terminal
stack test --system-ghc
fi
notifications:

View File

@ -12,6 +12,8 @@ The change log is available [on GitHub][2].
* [#129](https://github.com/kowainik/relude/issues/129):
Add `appliedTo` and `chainedTo` as named versions of operators `=<<` and `<**>`.
* Improve documentation for `One` typeclass and add tests.
* Support ghc-8.6.3 and ghc-8.4.4.
Drop support for ghc-8.6.1 and ghc-8.4.3.
## 0.4.0 — Nov 6, 2018

View File

@ -1,8 +1,9 @@
{-
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
License: MIT
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>
-}
module Main where

View File

@ -48,16 +48,16 @@ homepage: https://github.com/kowainik/relude
bug-reports: https://github.com/kowainik/relude/issues
license: MIT
license-file: LICENSE
author: Stephen Diehl, @serokell, Kowainik
author: Kowainik, Stephen Diehl, Serokell
maintainer: Kowainik <xrom.xkov@gmail.com>
copyright: 2016 Stephen Diehl, 2016-2018 Serokell, 2018 Kowainik
copyright: 2016 Stephen Diehl, 2016-2018 Serokell, 2018-2019 Kowainik
category: Prelude
stability: stable
build-type: Simple
tested-with: GHC == 8.0.2
, GHC == 8.2.2
, GHC == 8.4.3
, GHC == 8.6.1
, GHC == 8.4.4
, GHC == 8.6.3
extra-doc-files: CHANGELOG.md
, CONTRIBUTING.md
, README.md

View File

@ -1,9 +1,9 @@
{-# LANGUAGE Trustworthy #-}
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -1,9 +1,9 @@
{-# LANGUAGE Safe #-}
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -2,9 +2,9 @@
{-# LANGUAGE Unsafe #-}
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -1,9 +1,9 @@
{-# LANGUAGE Safe #-}
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -1,7 +1,7 @@
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>
@ -19,7 +19,7 @@ module Relude.Bool.Guard
import Relude.Bool.Reexport (Bool (..), guard, unless, when)
import Relude.Function (flip)
import Relude.Monad (Monad, return, MonadPlus, (>>=))
import Relude.Monad (Monad, MonadPlus, return, (>>=))
-- $setup
-- >>> import Relude.Applicative (pure)

View File

@ -1,7 +1,7 @@
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -1,7 +1,7 @@
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -5,7 +5,7 @@
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-present Kowainik
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -1,7 +1,7 @@
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -11,9 +11,9 @@
#endif
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -1,7 +1,7 @@
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -4,9 +4,9 @@
{-# LANGUAGE ViewPatterns #-}
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -1,5 +1,5 @@
{- |
Copyright: (c) 2018 Kowainik
Copyright: (c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -1,5 +1,5 @@
{- |
Copyright: (c) 2018 Kowainik
Copyright: (c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -2,7 +2,7 @@
{-# LANGUAGE TypeApplications #-}
{- |
Copyright: (c) 2018 Kowainik
Copyright: (c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -2,8 +2,8 @@
{-# LANGUAGE TypeApplications #-}
{- |
Copyright: (c) 2011-2015 Edward Kmett
(c) 2018 Kowainik
Copyright: (c) 2011-2015 Edward Kmett
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>
-}

View File

@ -2,7 +2,7 @@
{-# LANGUAGE TypeFamilies #-}
{- |
Copyright: (c) 2018 Kowainik
Copyright: (c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -1,7 +1,7 @@
{-# LANGUAGE TypeFamilies #-}
{- |
Copyright: (c) 2018 Kowainik
Copyright: (c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -2,7 +2,7 @@
{-# LANGUAGE ScopedTypeVariables #-}
{- |
Copyright: (c) 2018 Kowainik
Copyright: (c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -1,5 +1,5 @@
{- |
Copyright: (c) 2018 Kowainik
Copyright: (c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -4,7 +4,7 @@
{-# LANGUAGE TypeApplications #-}
{- |
Copyright: (c) 2018 Kowainik
Copyright: (c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -3,9 +3,9 @@
{-# LANGUAGE LambdaCase #-}
{- |
Copyright: (c) 2014 Chris Allen, Edward Kmett
(c) 2018 Kowainik
License: MIT
Copyright: (c) 2014 Chris Allen, Edward Kmett
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>
Monoidal 'Validation' sibling to 'Either'.

View File

@ -1,5 +1,5 @@
{- |
Copyright: (c) 2018 Kowainik
Copyright: (c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -1,5 +1,5 @@
{- |
Copyright: (c) 2018 Kowainik
Copyright: (c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -8,9 +8,9 @@
{-# OPTIONS_GHC -fno-warn-unticked-promoted-constructors #-}
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -1,7 +1,7 @@
{-# LANGUAGE CPP #-}
{- |
Copyright: (c) 2018 Kowainik
Copyright: (c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>
@ -22,9 +22,8 @@ import Data.Foldable (Foldable (fold, foldMap, foldl', foldr, length, null, toLi
sequence_, traverse_)
import Data.Traversable (Traversable (..), forM, mapAccumL, mapAccumR)
#if MIN_VERSION_base(4,10,0)
import Data.Bifoldable (Bifoldable (..), biList, biall, biand,
biany, biasum, bielem, bifind, bifoldl', bifoldlM, bifoldr',
bifoldrM, bifor_, bilength, binull, bior, bisequence_,
bitraverse_)
import Data.Bifoldable (Bifoldable (..), biList, biall, biand, biany, biasum, bielem, bifind,
bifoldl', bifoldlM, bifoldr', bifoldrM, bifor_, bilength, binull, bior,
bisequence_, bitraverse_)
import Data.Bitraversable (Bitraversable (..), bifoldMapDefault, bifor, bimapDefault, bisequence)
#endif

View File

@ -1,7 +1,7 @@
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -2,7 +2,7 @@
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2016-2018 Serokell
(c) 2018 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -3,7 +3,7 @@
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2016-2018 Serokell
(c) 2018 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -3,7 +3,7 @@
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2016-2018 Serokell
(c) 2018 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -1,7 +1,7 @@
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -1,9 +1,9 @@
{-# LANGUAGE Safe #-}
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -1,9 +1,9 @@
{-# LANGUAGE Safe #-}
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -1,7 +1,7 @@
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -1,9 +1,9 @@
{-# LANGUAGE Safe #-}
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -1,7 +1,7 @@
{-# LANGUAGE ExplicitForAll #-}
{- |
Copyright: (c) 2018 Kowainik
Copyright: (c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -1,9 +1,9 @@
{-# LANGUAGE Safe #-}
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -1,9 +1,9 @@
{-# LANGUAGE Safe #-}
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -1,9 +1,9 @@
{-# LANGUAGE Trustworthy #-}
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -1,9 +1,9 @@
{-# LANGUAGE Safe #-}
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -4,9 +4,9 @@
{-# OPTIONS_GHC -fno-warn-orphans #-}
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -1,9 +1,9 @@
{-# LANGUAGE Safe #-}
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -1,9 +1,9 @@
{-# LANGUAGE Safe #-}
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -1,9 +1,9 @@
{-# LANGUAGE Safe #-}
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -1,7 +1,7 @@
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -1,7 +1,7 @@
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -2,7 +2,7 @@
{-# LANGUAGE TypeApplications #-}
{- |
Copyright: (c) 2018 Kowainik
Copyright: (c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>
-}

View File

@ -4,9 +4,9 @@
{-# LANGUAGE Trustworthy #-}
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -1,7 +1,7 @@
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -6,9 +6,9 @@
{-# LANGUAGE TypeSynonymInstances #-}
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -1,7 +1,7 @@
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -1,9 +1,9 @@
{-# LANGUAGE Unsafe #-}
{- |
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>

View File

@ -1,4 +1,7 @@
resolver: lts-12.1
resolver: lts-13.6
extra-deps:
- tasty-hedgehog-0.2.0.0
nix:
packages: [binutils, gmp]

View File

@ -1,8 +1,9 @@
{-
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
License: MIT
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>
-}
module Main (main) where

View File

@ -1,8 +1,9 @@
{-
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
License: MIT
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>
-}
module Main where

View File

@ -1,8 +1,9 @@
{-
Copyright: (c) 2016 Stephen Diehl
(c) 20016-2018 Serokell
(c) 2018 Kowainik
License: MIT
Copyright: (c) 2016 Stephen Diehl
(c) 2016-2018 Serokell
(c) 2018-2019 Kowainik
License: MIT
Maintainer: Kowainik <xrom.xkov@gmail.com>
-}
module Test.Relude.Property