advent-of-code-api 0.2.4.0 → 0.2.4.1
raw patch · 3 files changed
+13/−3 lines, 3 filesPVP: minor bump suggested
API additions: PVP suggests at least a minor version bump
API changes (from Hackage documentation)
+ Advent: _DayInt :: (Choice p, Applicative f) => p Day (f Day) -> p Integer (f Integer)
Files
- CHANGELOG.md +9/−0
- advent-of-code-api.cabal +2/−2
- src/Advent.hs +2/−1
CHANGELOG.md view
@@ -1,6 +1,15 @@ Changelog ========= +Version 0.2.4.1+---------------++*November 21, 2019*++<https://github.com/mstksg/advent-of-code-api/releases/tag/v0.2.4.1>++* Export `DayInt` and `_DayInt` from *Advent* module+ Version 0.2.4.0 ---------------
advent-of-code-api.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: d214b34991e5cecf77b64cf62b556642dba8073ebe9565990fe8c3238b2eeeae+-- hash: 538919b3907c1f6fb7ea04cba6bb88a2137e0861598c39f023ab26534ae8d54f name: advent-of-code-api-version: 0.2.4.0+version: 0.2.4.1 synopsis: Advent of Code REST API bindings and servant API description: Haskell bindings for Advent of Code REST API and a servant API. Please use responsibly! See README.md or "Advent" module for an introduction and
src/Advent.hs view
@@ -5,6 +5,7 @@ {-# LANGUAGE KindSignatures #-} {-# LANGUAGE LambdaCase #-} {-# LANGUAGE OverloadedStrings #-}+{-# LANGUAGE PatternSynonyms #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StandaloneDeriving #-} {-# LANGUAGE TupleSections #-}@@ -59,7 +60,7 @@ , challengeReleased -- * Utility -- ** Day- , mkDay, mkDay_, dayInt+ , mkDay, mkDay_, dayInt, pattern DayInt, _DayInt , aocDay -- ** Part , partChar, partInt