aoc 0.1.0.0 → 0.1.0.1
raw patch · 3 files changed
+11/−3 lines, 3 files
Files
- CHANGELOG.md +5/−1
- aoc.cabal +1/−1
- src/Utility/AOC.hs +5/−1
CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for aoc -## 0.1.0.0 -- YYYY-mm-dd +## 0.1.0.1 -- 2025-03-26 + +* Exported HashMap and Set types to prevent conflicts in type signatures + +## 0.1.0.0 -- 2025-03-16 * First version. Released on an unsuspecting world.
aoc.cabal view
@@ -20,7 +20,7 @@ -- PVP summary: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change -version: 0.1.0.0 +version: 0.1.0.1 -- A short (one-line) description of the package. synopsis: Utility functions commonly used while solving Advent of Code puzzles
src/Utility/AOC.hs view
@@ -47,7 +47,11 @@ -- * Miscellaneous range, rangeIntersect, - binToDec + binToDec, + -- Export types/constraints used in top-level function type signatures + Hashable, + HM.HashMap, + S.Set ) where import qualified Data.HashMap.Strict as HM