network-uri-static 0.1.2.1 → 0.1.2.2
raw patch · 3 files changed
+14/−4 lines, 3 filesdep ~network-uri
Dependency ranges changed: network-uri
Files
- CHANGELOG.md +10/−0
- network-uri-static.cabal +3/−3
- src/Network/URI/Static.hs +1/−1
CHANGELOG.md view
@@ -1,3 +1,13 @@+# 0.1.2.2++* Export nothing if network-uri >= 2.6.2 instead of 2.7.0.++# 0.1.2.1++* The contents have been merged into network-uri, so the module is now+ empty if you use network-uri. But you can still use this module at the+ latest version if you are requiring the older network-uri for some reason.+ # 0.1.1.0 * Added `relativeReference`.
network-uri-static.cabal view
@@ -1,5 +1,5 @@ name: network-uri-static-version: 0.1.2.1+version: 0.1.2.2 synopsis: A small utility to declare type-safe static URIs description: This library helps you declare type-safe static URIs by parsing URIs at compile time.@@ -42,12 +42,12 @@ ViewPatterns if flag(defer-to-network-uri) build-depends: base >= 4.7 && < 5,- network-uri >= 2.7 && < 3,+ network-uri >= 2.6.2 && < 3, template-haskell >= 2.9 && < 3 else exposed-modules: Network.URI.Static build-depends: base >= 4.7 && < 5,- network-uri >= 2.5 && < 2.7,+ network-uri >= 2.5 && < 2.6.2, template-haskell >= 2.9 && < 3 hs-source-dirs: src default-language: Haskell2010
src/Network/URI/Static.hs view
@@ -1,6 +1,6 @@ {-# LANGUAGE CPP, RecordWildCards, TemplateHaskell, ViewPatterns #-} -#if MIN_VERSION_network_uri(2,7,0)+#if MIN_VERSION_network_uri(2,6,2) module Network.URI.Static () where #else