cartel 0.10.0.0 → 0.10.0.2
raw patch · 2 files changed
+7/−7 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- cartel.cabal +3/−3
- genCabal.hs +4/−4
cartel.cabal view
@@ -3,10 +3,10 @@ -- http://www.github.com/massysett/cartel -- -- Script name used to generate: genCabal.hs--- Generated on: 2014-05-30 10:21:35.348429 EDT--- Cartel library version: Version {versionBranch = [0,1,0,0], versionTags = []}+-- Generated on: 2014-05-30 14:59:50.352284 EDT+-- Cartel library version: 0.10.0.0 name: cartel-version: 0.10.0.0+version: 0.10.0.2 cabal-version: >= 1.14 build-type: Simple license: BSD3
genCabal.hs view
@@ -3,7 +3,7 @@ -- -- You should note in your comments which version of Cartel was used -- when writing the Cartel program; in this case, I used version--- 0.4.0.0.+-- 0.10.0.0. -- -- There's no huge benefit to using Cartel for small programs or -- libraries; indeed, Cartel itself is small so there's not much@@ -47,9 +47,9 @@ -- constructor to help future-proof your code. properties :: A.Properties-properties = A.properties+properties = A.empty { A.prName = "cartel"- , A.prVersion = A.Version [0,10,0,0]+ , A.prVersion = A.Version [0,10,0,2] , A.prCabalVersion = (1, 14) , A.prBuildType = A.Simple , A.prLicense = A.BSD3@@ -109,7 +109,7 @@ :: [String] -- ^ List of library modules -> A.Cabal-cabal mods = A.cabal+cabal mods = A.empty { A.cProperties = properties , A.cLibrary = Just $ library mods }