packages feed

network-light 0.1.0.6 → 0.1.0.7

raw patch · 3 files changed

+8/−2 lines, 3 filesPVP: minor bump suggested

API additions: PVP suggests at least a minor version bump

API changes (from Hackage documentation)

+ System.Network: SockAddrInet :: Int -> String -> SockAddr

Files

CHANGELOG.md view
@@ -27,3 +27,8 @@ ## 0.1.0.6 -- 2026-08-06  * Verified that it works with a bunch more GHC cmopilers.++## 0.1.0.7 -- 2026-08-13++* Fix: `System.Network` exported `SockAddr` without its `SockAddrInet` constructor, so downstream code could construct addresses via `mkSockAddr` but never destruct them.+* Ensure compatibility with MHS version 0.16.6.0
network-light.cabal view
@@ -1,6 +1,6 @@ cabal-version:      3.0 name:               network-light-version:            0.1.0.6+version:            0.1.0.7 synopsis:           A slimmed down version of network description:        A slimmed down version of network, that works with both GHC and MHS. license:            Apache-2.0@@ -34,6 +34,7 @@                      || ==9.12.4                      || ==9.14.1,                     MHS ==0.16.4.0+                     || ==0.16.6.0  source-repository head   type:     git
src/System/Network.hs view
@@ -23,7 +23,7 @@     , Domain(..)     , StreamType(..)     , SockOpt(..)-    , SockAddr+    , SockAddr(..)     , mkSockAddr        -- * Basic operations