labels 0.1.1 → 0.1.2
raw patch · 3 files changed
+5/−1 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG +3/−0
- labels.cabal +1/−1
- src/Labels/Internal.hs +1/−0
CHANGELOG view
@@ -1,3 +1,6 @@+0.1.2:+ * Add docs for "project" function.+ 0.1.1: * Add "project" function.
labels.cabal view
@@ -1,5 +1,5 @@ name: labels-version: 0.1.1+version: 0.1.2 synopsis: Anonymous records via named tuples description: Declare and access tuple fields with labels. An approach to anonymous records. homepage: https://github.com/chrisdone/labels#readme
src/Labels/Internal.hs view
@@ -106,6 +106,7 @@ -- | A record can be narrowed or have its order changed by projecting -- into record type. class Project from to where+ -- | Narrow number of or change order of fields in a record. project :: from -> to --------------------------------------------------------------------------------