Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
11 changes: 6 additions & 5 deletions typed-process-effectful.cabal
Original file line number Diff line number Diff line change
@@ -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.

Expand All @@ -23,12 +23,15 @@ author: Dominik Peteler
maintainer: [email protected]
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
Expand Down Expand Up @@ -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
Expand All @@ -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,
Expand Down
Loading