antagonist 0.1.0.27 → 0.1.0.29
raw patch · 2 files changed
+6/−5 lines, 2 filesdep +time-locale-compatdep −old-localePVP ok
version bump matches the API change (PVP)
Dependencies added: time-locale-compat
Dependencies removed: old-locale
API changes (from Hackage documentation)
Files
- antagonist.cabal +3/−3
- server/Web/Antagonist/Server.hs +3/−2
antagonist.cabal view
@@ -10,7 +10,7 @@ -- PVP summary: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change-version: 0.1.0.27+version: 0.1.0.29 -- A short (one-line) description of the package. synopsis: A web interface to Antisplice dungeons.@@ -50,7 +50,7 @@ library exposed-modules: Web.Antagonist.Server, Web.Antagonist.Server.Data- build-depends: base >=4.6 && <4.9, yesod >=1.2 && <1.5, antisplice >=0.17.1 && <0.18, text >=1.1 && <1.4, chatty >=0.6.4 && <0.7, chatty-utils >=0.7 && <0.8, shakespeare >=2.0 && <2.1, mtl >=2.1 && <2.3, time >=1.4 && <1.6, old-locale >=1.0 && <1.1, yesod-auth >=1.3 && <1.5+ build-depends: base >=4.6 && <4.9, yesod >=1.2 && <1.5, antisplice >=0.17.1 && <0.18, text >=1.1 && <1.4, chatty >=0.6.4 && <0.7, chatty-utils >=0.7 && <0.8, shakespeare >=2.0 && <2.1, mtl >=2.1 && <2.3, time >=1.4 && <1.6, yesod-auth >=1.3 && <1.5, time-locale-compat >= 0.1 && < 0.2 default-language: Haskell2010 hs-source-dirs: shared, server, . @@ -65,7 +65,7 @@ -- other-extensions: -- Other library packages from which modules are imported.- build-depends: base >=4.6 && <4.9, yesod >=1.2 && <1.5, antisplice >=0.17.1 && <0.18, text >=1.1 && <1.4, chatty >=0.6.4 && <0.7, chatty-utils >=0.7 && <0.8, shakespeare >=2.0 && <2.1, mtl >=2.1 && <2.3, ironforge >=0.1 && <0.2, time >=1.4 && <1.6, old-locale >=1.0 && <1.1, yesod-auth >=1.3 && <1.5+ build-depends: base >=4.6 && <4.9, yesod >=1.2 && <1.5, antisplice >=0.17.1 && <0.18, text >=1.1 && <1.4, chatty >=0.6.4 && <0.7, chatty-utils >=0.7 && <0.8, shakespeare >=2.0 && <2.1, mtl >=2.1 && <2.3, ironforge >=0.1 && <0.2, time >=1.4 && <1.6, yesod-auth >=1.3 && <1.5, time-locale-compat >= 0.1 && < 0.2 -- Directories containing source files. hs-source-dirs: shared, server, .
server/Web/Antagonist/Server.hs view
@@ -26,8 +26,9 @@ import Data.Monoid import Data.List import Data.Text (pack,unpack,Text)-import Data.Time.Format hiding (defaultTimeLocale)-import System.Locale+import Data.Time.Format+-- import System.Locale hiding (defaultTimeLocale)+import Data.Time.Locale.Compat import Text.Shakespeare.Text import Text.Hamlet import Text.Cassius