From 31009866c2fbe9c70f2b5f3ed4ec3baf188b8430 Mon Sep 17 00:00:00 2001 From: konsumlamm Date: Sat, 11 Oct 2025 20:20:41 +0200 Subject: [PATCH 1/2] Release parallel-3.3.0.0 --- changelog.md | 5 +++++ parallel.cabal | 3 +-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index f861b7f..f5b86c3 100644 --- a/changelog.md +++ b/changelog.md @@ -3,8 +3,13 @@ ## 3.3.0.0 *upcoming* * Bump dependency bounds +* Support MicroHs ([#81](https://github.com/haskell/parallel/pull/81)) +* Make rolling buffer strategies compositional ([#77](https://github.com/haskell/parallel/pull/77)) +* Deprecate `dot` ([#75](https://github.com/haskell/parallel/pull/75)) * Make strategic function application operators handle strategies correctly ([#61](https://github.com/haskell/parallel/pull/61)) * Add `parFmap` ([#53](https://github.com/haskell/parallel/pull/53)) +* Make `parListChunk` more efficient ([#45](https://github.com/haskell/parallel/issues/45)) +* Update documentation ## 3.2.2.0 *Jul 2018* diff --git a/parallel.cabal b/parallel.cabal index 025c070..6953d52 100644 --- a/parallel.cabal +++ b/parallel.cabal @@ -1,7 +1,6 @@ cabal-version: >=1.10 name: parallel -version: 3.2.2.0 -x-revision: 9 +version: 3.3.0.0 -- NOTE: Don't forget to update ./changelog.md license: BSD3 license-file: LICENSE From 76ed07af404cfda90f7f0e021432dfea22de945f Mon Sep 17 00:00:00 2001 From: konsumlamm Date: Sat, 11 Oct 2025 20:21:53 +0200 Subject: [PATCH 2/2] Update release month --- changelog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index f5b86c3..712a039 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,6 @@ # Changelog for [`parallel` package](http://hackage.haskell.org/package/parallel) -## 3.3.0.0 *upcoming* +## 3.3.0.0 *Oct 2025* * Bump dependency bounds * Support MicroHs ([#81](https://github.com/haskell/parallel/pull/81))