Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v3.2 #576

Merged
merged 1 commit into from
Mar 26, 2024
Merged

v3.2 #576

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
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## Version 3.2.0.0

* Breaking change: Using Strict and StrictData.
* Breaking change: Allow a control message to contain multiple file descriptors
[#567](https://github.com/haskell/network/issues/567)
* Breaking change: CmsgIdFd -> CmsgIdFds
[#575](https://github.com/haskell/network/issues/575)
* SocketTypes: use UnsupportedSocketType instead of -1.
[#560](https://github.com/haskell/network/issues/560)
* Expose NullSockAddr, add send-with-fds functions.
[#562](https://github.com/haskell/network/issues/562)
* Allow bytestring-0.12 and replace deprecated memcpy by copyBytes.
[#564](https://github.com/haskell/network/issues/564)
* Close file descriptor in accept when exception happens
[#569](https://github.com/haskell/network/issues/569)
* Bump CI to GHC 9.8 and latest versions of actions
[#573](https://github.com/haskell/network/issues/573)

## Version 3.1.5.0

* [#541](https://github.com/haskell/network/issues/541)
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AC_INIT([Haskell network package],
[3.1.4.0],
[3.2.0.0],
[[email protected]],
[network])

Expand Down
4 changes: 2 additions & 2 deletions network.cabal
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
cabal-version: 1.18
name: network
version: 3.1.5.0
version: 3.2.0.0
license: BSD3
license-file: LICENSE
maintainer: Kazu Yamamoto, Evan Borden
maintainer: Kazu Yamamoto, Tamar Christina

tested-with:
GHC == 9.8.2
Expand Down
Loading