From 581c60b26e301d16160c3d29253571130c7c094c Mon Sep 17 00:00:00 2001 From: Mann mit Hut Date: Thu, 31 Oct 2024 13:52:46 +0100 Subject: [PATCH 1/3] Bumped upper bound of effectful dependency * Removed effectful-core dependency; All relevant modules of that package are re-exported by the effectful package. * Distribute license file with the source code. --- typed-process-effectful.cabal | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/typed-process-effectful.cabal b/typed-process-effectful.cabal index 8f404cf..1a359fa 100644 --- a/typed-process-effectful.cabal +++ b/typed-process-effectful.cabal @@ -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, From b0a2991b2a2c05e0fbc5cd809bab9a7cf2ff56ec Mon Sep 17 00:00:00 2001 From: Mann mit Hut Date: Thu, 31 Oct 2024 13:56:34 +0100 Subject: [PATCH 2/3] Prepare release 1.0.0.3 --- CHANGELOG.md | 9 +++++++-- typed-process-effectful.cabal | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) 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 1a359fa..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. From 3f9cde0a5aea09418d0496c2257f5ca53c31e816 Mon Sep 17 00:00:00 2001 From: Mann mit Hut Date: Thu, 31 Oct 2024 14:11:13 +0100 Subject: [PATCH 3/3] Added Dependabot configuration --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/dependabot.yml 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"