hunk ./HaXml.cabal 2
-version: 1.25.3
+version: 1.25.4
hunk ./HaXml.cabal 58
+ Text.XML.HaXml.Version
hunk ./HaXml.cabal 80
- cpp-options: -DVERSION="\"1.25.3\""
hunk ./HaXml.cabal 86
- cpp-options: -DVERSION="\"1.25.3\""
hunk ./HaXml.cabal 93
- cpp-options: -DVERSION="\"1.25.3\""
hunk ./HaXml.cabal 100
- cpp-options: -DVERSION="\"1.25.3\""
hunk ./HaXml.cabal 107
- cpp-options: -DVERSION="\"1.25.3\""
hunk ./HaXml.cabal 114
- cpp-options: -DVERSION="\"1.25.3\""
hunk ./HaXml.cabal 121
- cpp-options: -DVERSION="\"1.25.3\""
hunk ./HaXml.cabal 128
- cpp-options: -DVERSION="\"1.25.3\""
hunk ./HaXml.cabal 135
- cpp-options: -DVERSION="\"1.25.3\""
hunk ./Makefile 2
-VERSION = 1.25.3
+VERSION = 1.25.4
hunk ./configure 5
-VERSION="1.25.3"
+VERSION="1.25.4"
hunk ./docs/index.html 139
-HaXml-1.25.3, release date 2015.01.22
+HaXml-1.25.4, release date 2017.06.19
hunk ./docs/index.html 142
-.tar.gz.
+.tar.gz.
hunk ./docs/index.html 163
- cabal install HaXml-1.25.3
+ cabal install HaXml-1.25.4
hunk ./docs/index.html 196
+Version 1.25.4 fixes the generation of the HaXml version string on Windows.
hunk ./src/Makefile 2
-VERSION = 1.25.3
+VERSION = 1.25.4
hunk ./src/Text/XML/HaXml.hs 31
+import Text.XML.HaXml.Version
hunk ./src/Text/XML/HaXml.hs 35
--- | The version of the library.
-version :: String
-version = VERSION
- -- expect cpp to fill in value
addfile ./src/Text/XML/HaXml/Version.hs
hunk ./src/Text/XML/HaXml/Version.hs 1
+module Text.XML.HaXml.Version
+ ( version
+ ) where
+
+version :: String
+version = "1.25.4"
hunk ./src/Text/XML/HaXml/Wrappers.hs 23
+import Text.XML.HaXml.Version
hunk ./src/Text/XML/HaXml/Wrappers.hs 35
- putStrLn $ "part of HaXml-" ++ VERSION
+ putStrLn $ "part of HaXml-" ++ version