packages feed

validity-time 0.2.0.1 → 0.2.0.2

raw patch · 2 files changed

+15/−13 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

src/Data/Validity/Time/Format.hs view
@@ -4,13 +4,13 @@ {-# LANGUAGE RecordWildCards #-} #endif module Data.Validity.Time.Format where-+#if MIN_VERSION_time(1,5,0) import Data.Validity  import Data.Time.Format  import Data.Validity.Time.LocalTime ()-#if MIN_VERSION_time(1,5,0)+ -- | Valid according to the contained values instance Validity TimeLocale where     validate TimeLocale {..} =
validity-time.cabal view
@@ -1,35 +1,31 @@--- This file has been generated from package.yaml by hpack version 0.20.0.+cabal-version: >= 1.10++-- This file has been generated from package.yaml by hpack version 0.29.6. -- -- see: https://github.com/sol/hpack ----- hash: cd70af2bbebe750b3f46ac416eee7fcf90747cacc28065b73c8aebdeca416ce7+-- hash: 7f8a3e8969f86465118727b47c793d1a274d2211198f45f8442e93edbd36184d  name:           validity-time-version:        0.2.0.1+version:        0.2.0.2 synopsis:       Validity instances for time description:    Please see README.md category:       Validity homepage:       https://github.com/NorfairKing/validity#readme bug-reports:    https://github.com/NorfairKing/validity/issues author:         Tom Sydney Kerckhove-maintainer:     syd.kerckhove@gmail.com+maintainer:     syd.kerckhove@gmail.com,+                nick.van.den.broeck666@gmail.com copyright:      Copyright: (c) 2017-2018 Tom Sydney Kerckhove license:        MIT license-file:   LICENSE build-type:     Simple-cabal-version:  >= 1.10  source-repository head   type: git   location: https://github.com/NorfairKing/validity  library-  hs-source-dirs:-      src-  build-depends:-      base >=4.7 && <5-    , time-    , validity >=0.5   exposed-modules:       Data.Validity.Time       Data.Validity.Time.Calendar@@ -38,4 +34,10 @@       Data.Validity.Time.LocalTime   other-modules:       Paths_validity_time+  hs-source-dirs:+      src+  build-depends:+      base >=4.7 && <5+    , time+    , validity >=0.5   default-language: Haskell2010