]> gitweb.michael.orlitzky.com - dead/htsn.git/commitdiff
Relax dependencies and fix a deprecation warning. 0.0.10
authorMichael Orlitzky <michael@orlitzky.com>
Thu, 29 May 2014 15:01:39 +0000 (11:01 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Thu, 29 May 2014 15:01:39 +0000 (11:01 -0400)
Bump to version 0.0.10.

htsn.cabal
test/ShellTests.hs

index 504b90a5e3ceaf153d474e1681332ce5783afbc4..57239e6cae2202edecf930cc63b7365dd2c2a230 100644 (file)
@@ -1,5 +1,5 @@
 name:           htsn
-version:        0.0.9
+version:        0.0.10
 cabal-version:  >= 1.8
 author:         Michael Orlitzky
 maintainer:    Michael Orlitzky <michael@orlitzky.com>
@@ -207,20 +207,20 @@ description:
 
 executable htsn
   build-depends:
-    base                        == 4.*,
+    base                        >= 4.6 && < 5,
     cmdargs                     >= 0.10.6,
-    configurator                == 0.2.*,
-    directory                   == 1.2.*,
-    filepath                    == 1.3.*,
-    hdaemonize                  == 0.4.*,
-    hslogger                    == 1.2.*,
-    htsn-common                 == 0.0.1,
-    hxt                         == 9.3.*,
-    MissingH                    == 1.2.*,
+    configurator                >= 0.2,
+    directory                   >= 1.2,
+    filepath                    >= 1.3,
+    hdaemonize                  >= 0.4,
+    hslogger                    >= 1.2,
+    htsn-common                 >= 0.0.2,
+    hxt                         >= 9.3,
+    MissingH                    >= 1.2,
     network                     >= 2.4 && < 2.6,
-    tasty                       == 0.8.*,
-    tasty-hunit                 == 0.8.*,
-    unix                        == 2.6.*
+    tasty                       >= 0.8,
+    tasty-hunit                 >= 0.8,
+    unix                        >= 2.6
 
   main-is:
     Main.hs
@@ -262,21 +262,20 @@ test-suite testsuite
   hs-source-dirs: src test
   main-is: TestSuite.hs
   build-depends:
-    base                        == 4.*,
+    base                        >= 4.6 && < 5,
     cmdargs                     >= 0.10.6,
-    configurator                == 0.2.*,
-    directory                   == 1.2.*,
-    filepath                    == 1.3.*,
-    hdaemonize                  == 0.4.*,
-    hslogger                    == 1.2.*,
-    htsn-common                 == 0.0.1,
-    hxt                         == 9.3.*,
-    MissingH                    == 1.2.*,
-    network                     == 2.4.*,
-    tasty                       == 0.8.*,
-    tasty-hunit                 == 0.8.*,
-    unix                        == 2.6.*
-
+    configurator                >= 0.2,
+    directory                   >= 1.2,
+    filepath                    >= 1.3,
+    hdaemonize                  >= 0.4,
+    hslogger                    >= 1.2,
+    htsn-common                 >= 0.0.2,
+    hxt                         >= 9.3,
+    MissingH                    >= 1.2,
+    network                     >= 2.4 && < 2.6,
+    tasty                       >= 0.8,
+    tasty-hunit                 >= 0.8,
+    unix                        >= 2.6
   -- It's not entirely clear to me why I have to reproduce all of this.
   ghc-options:
     -Wall
@@ -299,21 +298,21 @@ test-suite shelltests
   hs-source-dirs: src test
   main-is: ShellTests.hs
   build-depends:
-    base                        == 4.*,
+    base                        >= 4.6 && < 5,
     cmdargs                     >= 0.10.6,
-    configurator                == 0.2.*,
-    directory                   == 1.2.*,
-    filepath                    == 1.3.*,
-    hdaemonize                  == 0.4.*,
-    hslogger                    == 1.2.*,
-    htsn-common                 == 0.0.1,
-    hxt                         == 9.3.*,
-    MissingH                    == 1.2.*,
-    network                     == 2.4.*,
-    process                     == 1.1.*,
-    tasty                       == 0.8.*,
-    tasty-hunit                 == 0.8.*,
-    unix                        == 2.6.*
+    configurator                >= 0.2,
+    directory                   >= 1.2,
+    filepath                    >= 1.3,
+    hdaemonize                  >= 0.4,
+    hslogger                    >= 1.2,
+    htsn-common                 >= 0.0.2,
+    hxt                         >= 9.3,
+    MissingH                    >= 1.2,
+    network                     >= 2.4 && < 2.6,
+    process                     >= 1.1,
+    tasty                       >= 0.8,
+    tasty-hunit                 >= 0.8,
+    unix                        >= 2.6
 
   -- It's not entirely clear to me why I have to reproduce all of this.
   ghc-options:
index 65a10ccca97daf27dd80e55e15e8a75e3d55a735..1e884d5ef435eb5d7631e76046515a6d19d59724 100644 (file)
@@ -1,7 +1,7 @@
 module Main
 where
 
-import System.Cmd ( system )
+import System.Process ( system )
 import System.Exit ( exitWith )
 
 main :: IO ()