classy-prelude 1.0.1 → 1.0.2
raw patch · 3 files changed
+8/−1 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ChangeLog.md +4/−0
- ClassyPrelude.hs +3/−0
- classy-prelude.cabal +1/−1
ChangeLog.md view
@@ -1,3 +1,7 @@+## 1.0.2++* Export `parseTimeM` for `time >= 1.5`+ ## 1.0.1 * Add the `say` package reexports
ClassyPrelude.hs view
@@ -223,6 +223,9 @@ , fromGregorian , formatTime , parseTime+#if MIN_VERSION_time(1,5,0)+ , parseTimeM+#endif , getCurrentTime ) import Data.Time.Locale.Compat (defaultTimeLocale)
classy-prelude.cabal view
@@ -1,5 +1,5 @@ name: classy-prelude-version: 1.0.1+version: 1.0.2 synopsis: A typeclass-based Prelude. description: Modern best practices without name collisions. No partial functions are exposed, but modern data structures are, without requiring import lists. Qualified modules also are not needed: instead operations are based on type-classes from the mono-traversable package.