mirror of
https://github.com/polysemy-research/polysemy.git
synced 2025-01-07 15:08:47 +03:00
Release 0.1.2.1 (#51)
This commit is contained in:
parent
17f127319d
commit
76d5f1953e
@ -15,6 +15,10 @@ matrix:
|
|||||||
- env: STACK='stack --resolver=lts-13.0' CACHE_NAME=8.6.3
|
- env: STACK='stack --resolver=lts-13.0' CACHE_NAME=8.6.3
|
||||||
addons: {apt: {packages: [libgmp-dev]}}
|
addons: {apt: {packages: [libgmp-dev]}}
|
||||||
|
|
||||||
|
# nightly
|
||||||
|
- env: STACK='stack --resolver=nightly' CACHE_NAME=nightly
|
||||||
|
addons: {apt: {packages: [libgmp-dev]}}
|
||||||
|
|
||||||
# Use the resolver in stack.yaml
|
# Use the resolver in stack.yaml
|
||||||
- env: STACK=stack CACHE_NAME=stack-linux
|
- env: STACK=stack CACHE_NAME=stack-linux
|
||||||
addons: {apt: {packages: [libgmp-dev]}}
|
addons: {apt: {packages: [libgmp-dev]}}
|
||||||
@ -31,7 +35,7 @@ install:
|
|||||||
- ./.travis/install-stack.sh
|
- ./.travis/install-stack.sh
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- echo "$(stack ghc -- --version) [$(stack ghc -- --print-project-git-commit-id 2> /dev/null || echo '?')]"
|
- echo "$($STACK ghc -- --version) [$($STACK ghc -- --print-project-git-commit-id 2> /dev/null || echo '?')]"
|
||||||
- GHC_OPTIONS="-Werror"
|
- GHC_OPTIONS="-Werror"
|
||||||
- |
|
- |
|
||||||
set -ex
|
set -ex
|
||||||
|
@ -26,4 +26,4 @@ else
|
|||||||
travis_retry fetch_stack_linux
|
travis_retry fetch_stack_linux
|
||||||
fi
|
fi
|
||||||
|
|
||||||
travis_retry stack --no-terminal setup;
|
travis_retry $STACK --no-terminal setup;
|
||||||
|
@ -1,5 +1,12 @@
|
|||||||
# Changelog for polysemy
|
# Changelog for polysemy
|
||||||
|
|
||||||
|
## 0.1.2.1 (2019-05-18)
|
||||||
|
|
||||||
|
- Give explicit package bounds for dependencies
|
||||||
|
- Haddock improvements
|
||||||
|
- Remove `Typeable` machinery from `Polysemy.Internal.Union` (thanks to
|
||||||
|
@googleson78)
|
||||||
|
|
||||||
## 0.1.2.0 (2019-04-26)
|
## 0.1.2.0 (2019-04-26)
|
||||||
|
|
||||||
- `runInputAsReader`, `runTraceAsOutput` and `runOutputAsWriter` have more
|
- `runInputAsReader`, `runTraceAsOutput` and `runOutputAsWriter` have more
|
||||||
|
16
package.yaml
16
package.yaml
@ -1,5 +1,5 @@
|
|||||||
name: polysemy
|
name: polysemy
|
||||||
version: 0.1.2.0
|
version: 0.1.2.1
|
||||||
github: "isovector/polysemy"
|
github: "isovector/polysemy"
|
||||||
license: BSD3
|
license: BSD3
|
||||||
author: "Sandy Maguire"
|
author: "Sandy Maguire"
|
||||||
@ -17,11 +17,11 @@ description: Please see the README on GitHub at <https://github.com/isov
|
|||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- base >= 4.7 && < 5
|
- base >= 4.7 && < 5
|
||||||
- transformers
|
- transformers >= 0.5.5.0 && < 0.6
|
||||||
- mtl
|
- mtl >= 2.2.2 && <3
|
||||||
- template-haskell
|
- template-haskell >= 2.14.0.0 && <2.15
|
||||||
- syb
|
- syb >= 0.7 && <0.8
|
||||||
- random
|
- random >= 1.1 && <1.2
|
||||||
|
|
||||||
default-extensions:
|
default-extensions:
|
||||||
- DataKinds
|
- DataKinds
|
||||||
@ -75,8 +75,8 @@ tests:
|
|||||||
- -with-rtsopts=-N
|
- -with-rtsopts=-N
|
||||||
dependencies:
|
dependencies:
|
||||||
- polysemy
|
- polysemy
|
||||||
- inspection-testing
|
- inspection-testing >= 0.4.1.1 && < 0.5
|
||||||
- hspec
|
- hspec >= 2.6.0 && < 3
|
||||||
|
|
||||||
benchmarks:
|
benchmarks:
|
||||||
polysemy-bench:
|
polysemy-bench:
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
name: polysemy-plugin
|
name: polysemy-plugin
|
||||||
version: 0.1.0.0
|
version: 0.1.0.1
|
||||||
github: "isovector/polysemy"
|
github: "isovector/polysemy"
|
||||||
license: BSD3
|
license: BSD3
|
||||||
author: "Sandy Maguire"
|
author: "Sandy Maguire"
|
||||||
@ -17,9 +17,9 @@ description: Please see the README on GitHub at <https://github.com/isov
|
|||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- base >= 4.7 && < 5
|
- base >= 4.7 && < 5
|
||||||
- ghc
|
- ghc >= 8.6.3 && < 8.7
|
||||||
- ghc-tcplugins-extra
|
- ghc-tcplugins-extra >= 0.3 && < 0.4
|
||||||
- polysemy
|
- polysemy >= 0.1
|
||||||
|
|
||||||
library:
|
library:
|
||||||
source-dirs: src
|
source-dirs: src
|
||||||
@ -35,8 +35,8 @@ tests:
|
|||||||
- -fplugin=Polysemy.Plugin
|
- -fplugin=Polysemy.Plugin
|
||||||
dependencies:
|
dependencies:
|
||||||
- polysemy-plugin
|
- polysemy-plugin
|
||||||
- hspec
|
- hspec >= 2.6.0 && < 3
|
||||||
- should-not-typecheck
|
- should-not-typecheck >= 2.1.0 && < 3
|
||||||
|
|
||||||
default-extensions:
|
default-extensions:
|
||||||
- DataKinds
|
- DataKinds
|
||||||
|
@ -4,7 +4,7 @@ cabal-version: 1.12
|
|||||||
--
|
--
|
||||||
-- see: https://github.com/sol/hpack
|
-- see: https://github.com/sol/hpack
|
||||||
--
|
--
|
||||||
-- hash: 5083f650624e23b69f32959147328d1059db99da44a999e30f1a3effd286c3c4
|
-- hash: 636a71a55069d695c2cd1817011316cd69fb6c519741a019269b0989b46eb83b
|
||||||
|
|
||||||
name: polysemy
|
name: polysemy
|
||||||
version: 0.1.2.0
|
version: 0.1.2.0
|
||||||
@ -71,11 +71,11 @@ library
|
|||||||
ghc-options: -O2 -Wall
|
ghc-options: -O2 -Wall
|
||||||
build-depends:
|
build-depends:
|
||||||
base >=4.7 && <5
|
base >=4.7 && <5
|
||||||
, mtl
|
, mtl >=2.2.2 && <3
|
||||||
, random
|
, random >=1.1 && <1.2
|
||||||
, syb
|
, syb >=0.7 && <0.8
|
||||||
, template-haskell
|
, template-haskell >=2.14.0.0 && <2.15
|
||||||
, transformers
|
, transformers >=0.5.5.0 && <0.6
|
||||||
if flag(dump-core)
|
if flag(dump-core)
|
||||||
ghc-options: -fplugin=DumpCore -fplugin-opt DumpCore:core-html
|
ghc-options: -fplugin=DumpCore -fplugin-opt DumpCore:core-html
|
||||||
build-depends:
|
build-depends:
|
||||||
@ -97,14 +97,14 @@ test-suite polysemy-test
|
|||||||
ghc-options: -threaded -rtsopts -with-rtsopts=-N
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N
|
||||||
build-depends:
|
build-depends:
|
||||||
base >=4.7 && <5
|
base >=4.7 && <5
|
||||||
, hspec
|
, hspec >=2.6.0 && <3
|
||||||
, inspection-testing
|
, inspection-testing >=0.4.1.1 && <0.5
|
||||||
, mtl
|
, mtl >=2.2.2 && <3
|
||||||
, polysemy
|
, polysemy
|
||||||
, random
|
, random >=1.1 && <1.2
|
||||||
, syb
|
, syb >=0.7 && <0.8
|
||||||
, template-haskell
|
, template-haskell >=2.14.0.0 && <2.15
|
||||||
, transformers
|
, transformers >=0.5.5.0 && <0.6
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
|
|
||||||
benchmark polysemy-bench
|
benchmark polysemy-bench
|
||||||
@ -123,8 +123,8 @@ benchmark polysemy-bench
|
|||||||
, freer-simple
|
, freer-simple
|
||||||
, mtl
|
, mtl
|
||||||
, polysemy
|
, polysemy
|
||||||
, random
|
, random >=1.1 && <1.2
|
||||||
, syb
|
, syb >=0.7 && <0.8
|
||||||
, template-haskell
|
, template-haskell >=2.14.0.0 && <2.15
|
||||||
, transformers
|
, transformers >=0.5.5.0 && <0.6
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
|
Loading…
Reference in New Issue
Block a user