typed-process-effectful 1.0.0.2 → 1.0.0.3
raw patch · 2 files changed
+14/−8 lines, 2 filesdep −effectful-coredep ~basedep ~effectfulPVP: minor bump suggested
API additions: PVP suggests at least a minor version bump
Dependencies removed: effectful-core
Dependency ranges changed: base, effectful
API changes (from Hackage documentation)
+ Effectful.Process.Typed: exitCodeExceptionNoOutput :: Process stdin stdout stderr -> ExitCode -> ExitCodeException
+ Effectful.Process.Typed: exitCodeExceptionWithOutput :: MonadIO m => Process stdin (STM ByteString) (STM ByteString) -> m ExitCodeException
+ Effectful.Process.Typed: getPid :: Process stdin stdout stderr -> IO (Maybe Pid)
+ Effectful.Process.Typed: type Pid = CPid
Files
- CHANGELOG.md +7/−2
- typed-process-effectful.cabal +7/−6
CHANGELOG.md view
@@ -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
typed-process-effectful.cabal view
@@ -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 @@ 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@@ -55,10 +58,9 @@ -- cabal-gild: discover src/ --include=src/**/*.hs exposed-modules: Effectful.Process.Typed build-depends:- base >=4.14 && <5,+ base >=4.16 && <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 @@ build-depends: base, effectful,- effectful-core, tasty >=1.4 && <1.6, tasty-hunit >=0.10 && <0.11, typed-process-effectful,