imagepaste 0.2.0.0 → 0.2.0.1
raw patch · 2 files changed
+4/−4 lines, 2 files
Files
- imagepaste.cabal +2/−2
- src/Version.hs +2/−2
imagepaste.cabal view
@@ -1,5 +1,5 @@ Name: imagepaste-Version: 0.2.0.0+Version: 0.2.0.1 Synopsis: Command-line image paste utility Description: Command-line utility to paste images to image hosting sites.@@ -60,4 +60,4 @@ source-repository this type: mercurial location: https://bitbucket.org/balta2ar/imagepaste- tag: 0.2.0.0+ tag: 0.2.0.1
src/Version.hs view
@@ -1,4 +1,4 @@-{-# LANGUAGE CPP #-}+{-# LANGUAGE TemplateHaskell, CPP #-} module Version (fullVersion) where #ifdef CABAL@@ -19,7 +19,6 @@ Just (hash, True) -> hash ++ " (with local modifications)" Just (hash, False) -> hash) - -- | Version fullVersion = (showVersion version) ++ " " ++ showHgVersion@@ -27,6 +26,7 @@ #else -- Makefile (ghc --make) build +-- Hard-coded for developer builds fullVersion = "0.2.0.0-alpha 119:86725ab7343e" #endif