linux-namespaces 0.1.1.1 → 0.1.2.0
raw patch · 3 files changed
+7/−3 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ System.Linux.Namespaces: instance Read GroupMapping
+ System.Linux.Namespaces: instance Read UserMapping
Files
- ChangeLog +4/−0
- System/Linux/Namespaces.hsc +2/−2
- linux-namespaces.cabal +1/−1
ChangeLog view
@@ -1,3 +1,7 @@+v0.1.2.0++ * Provide Read instances for UserMapping & GroupMapping.+ v0.1.1.1 * Improve documentation.
System/Linux/Namespaces.hsc view
@@ -150,12 +150,12 @@ -- | A single user mapping, used with user namespaces. See -- @user_namespaces(7)@ for more details. data UserMapping = UserMapping UserID UserID Int- deriving (Show, Eq)+ deriving (Show, Read, Eq) -- | A single group mapping, used with user namespaces. See -- @user_namespaces(7)@ for more details. data GroupMapping = GroupMapping GroupID GroupID Int- deriving (Show, Eq)+ deriving (Show, Read, Eq) -- | Define the user mappings for the specified user namespace. This -- function requires @\/proc@ to be mounted. See @user_namespaces(7)@
linux-namespaces.cabal view
@@ -1,5 +1,5 @@ name: linux-namespaces-version: 0.1.1.1+version: 0.1.2.0 synopsis: Create new or enter an existing linux namespaces description: This library provides bindings to the @unshare(2)@ and @setns(2)@ linux