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
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog for [`process` package](http://hackage.haskell.org/package/process)

## 1.6.30.0 *June 2026*

* darwin: Allow posix_spawn_file_actions_addchdir to be missing when
linking against process ([#377](https://github.com/haskell/process/pull/377))

## 1.6.29.0 *May 2026*

* Stub out `runProcess.c` on wasm32 ([#366](https://github.com/haskell/process/pull/366))
Expand Down
2 changes: 1 addition & 1 deletion process.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: process
version: 1.6.29.0
version: 1.6.30.0
-- NOTE: Don't forget to update ./changelog.md
license: BSD-3-Clause
license-file: LICENSE
Expand Down
4 changes: 2 additions & 2 deletions test/process-tests.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: process-tests
version: 1.6.29.0
version: 1.6.30.0
license: BSD-3-Clause
license-file: LICENSE
maintainer: libraries@haskell.org
Expand All @@ -18,7 +18,7 @@ source-repository head

common process-dep
build-depends:
process == 1.6.29.0
process == 1.6.30.0

custom-setup
setup-depends:
Expand Down
Loading