diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..5ace460 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d981c8..28e69b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,15 @@ # CHANGELOG +## v1.0.0.3 (2024-10-31) +* Bumped upper bounds of effectful dependency. + Also removed effectful-core dependency. + ## v1.0.0.2 (2024-07-16) -* Bumped upper bounds for bytestring and tasty dependency. +* Bumped upper bounds of bytestring and tasty dependency. +* Corrected lower bound of typed-process dependency. ## v1.0.0.1 (2023-10-07) -* Bumped upper bounds for effectful and effectful-core dependency. +* Bumped upper bounds of effectful and effectful-core dependency. ## v1.0.0.0 (2023-08-23) * Initial release diff --git a/typed-process-effectful.cabal b/typed-process-effectful.cabal index 8f404cf..743839d 100644 --- a/typed-process-effectful.cabal +++ b/typed-process-effectful.cabal @@ -1,6 +1,6 @@ cabal-version: 3.0 name: typed-process-effectful -version: 1.0.0.2 +version: 1.0.0.3 synopsis: A binding of the typed-process library for the effectful effect system. @@ -23,12 +23,15 @@ author: Dominik Peteler maintainer: hackage+typed-process-effectful@with-h.at license: BSD-3-Clause build-type: Simple --- cabal-gild: discover ./ --include=LICENSE --include=*.md +-- cabal-gild: discover . --include=*.md extra-doc-files: CHANGELOG.md LICENSE.md README.md +extra-source-files: + LICENSE.md + tested-with: ghc ==8.10.7 || ==9.0.2 || ==9.2.8 || ==9.4.8 || ==9.6.6 || ==9.8.2 || ==9.10.1 source-repository head @@ -57,8 +60,7 @@ library build-depends: base >=4.14 && <5, bytestring <0.13, - effectful >=2.0 && <2.4, - effectful-core >=2.0 && <2.4, + effectful >=2.0 && <2.6, typed-process >=0.2.8 && <0.3, test-suite typed-process-effectful-test @@ -71,7 +73,6 @@ test-suite typed-process-effectful-test build-depends: base, effectful, - effectful-core, tasty >=1.4 && <1.6, tasty-hunit >=0.10 && <0.11, typed-process-effectful,