From 4d6eeb1682a99efad19a8e91df3c8e750b4226db Mon Sep 17 00:00:00 2001 From: Kazu Yamamoto Date: Wed, 27 Nov 2024 09:19:33 +0900 Subject: [PATCH] ver bumps up --- CHANGELOG.md | 9 +++++++++ configure.ac | 2 +- network.cabal | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5492b89c..5a099754 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## Version 3.2.7.0 + +* Using nested `bracket` for `gracefulClose`. + [#591](https://github.com/haskell/network/issues/590) +* Fix memory leak in getaddrinfo and make it async exception safe. + [#591](https://github.com/haskell/network/pull/591) +* Make call to c_free async exception safe. + [#592](https://github.com/haskell/network/pull/592) + ## Version 3.2.6.0 * fixing the Show instance of IPv4-mapped IPv6 address on little endian machines diff --git a/configure.ac b/configure.ac index c9fdb8b7..c8e45cfc 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_INIT([Haskell network package], - [3.2.6.0], + [3.2.7.0], [libraries@haskell.org], [network]) diff --git a/network.cabal b/network.cabal index 5bc40ef7..854e1c05 100644 --- a/network.cabal +++ b/network.cabal @@ -1,6 +1,6 @@ cabal-version: 1.18 name: network -version: 3.2.6.0 +version: 3.2.7.0 license: BSD3 license-file: LICENSE maintainer: Kazu Yamamoto, Tamar Christina