uri-bytestring 0.2.3.1 → 0.2.3.2
raw patch · 2 files changed
+6/−2 lines, 2 filesdep ~basePVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: base
API changes (from Hackage documentation)
- URI.ByteString: RelativeRef :: Maybe Authority -> ByteString -> Query -> Maybe ByteString -> URIRef Relative
- URI.ByteString: URI :: Scheme -> Maybe Authority -> ByteString -> Query -> Maybe ByteString -> URIRef Absolute
- URI.ByteString: [rrAuthority] :: URIRef Relative -> Maybe Authority
- URI.ByteString: [rrFragment] :: URIRef Relative -> Maybe ByteString
- URI.ByteString: [rrPath] :: URIRef Relative -> ByteString
- URI.ByteString: [rrQuery] :: URIRef Relative -> Query
- URI.ByteString: [uriAuthority] :: URIRef Absolute -> Maybe Authority
- URI.ByteString: [uriFragment] :: URIRef Absolute -> Maybe ByteString
- URI.ByteString: [uriPath] :: URIRef Absolute -> ByteString
- URI.ByteString: [uriQuery] :: URIRef Absolute -> Query
- URI.ByteString: [uriScheme] :: URIRef Absolute -> Scheme
+ URI.ByteString: [RelativeRef] :: {rrAuthority :: Maybe Authority, rrPath :: ByteString, rrQuery :: Query, rrFragment :: Maybe ByteString} -> URIRef Relative
+ URI.ByteString: [URI] :: {uriScheme :: Scheme, uriAuthority :: Maybe Authority, uriPath :: ByteString, uriQuery :: Query, uriFragment :: Maybe ByteString} -> URIRef Absolute
Files
- changelog.md +3/−0
- uri-bytestring.cabal +3/−2
changelog.md view
@@ -1,3 +1,6 @@+0.2.3.2+* Broaden dep on base.+ 0.2.3.1 * Add `relativeRef` quasi-quoter.
uri-bytestring.cabal view
@@ -1,5 +1,5 @@ name: uri-bytestring-version: 0.2.3.1+version: 0.2.3.2 synopsis: Haskell URI parsing as ByteStrings description: uri-bytestring aims to be an RFC3986 compliant URI parser that uses efficient ByteStrings for parsing and representing the URI data. license: BSD3@@ -16,6 +16,7 @@ Tested-With: GHC == 7.6.3 , GHC == 7.8.4 , GHC == 7.10.1+ , GHC == 8.0.2 extra-source-files: README.md CONTRIBUTING.md@@ -38,7 +39,7 @@ build-depends: attoparsec >= 0.12 && < 0.14- , base >= 4.6 && < 4.10+ , base >= 4.6 && < 5 , bytestring >= 0.9.1 && < 0.11 , blaze-builder >= 0.3.0.0 && < 0.5 , template-haskell >= 2.9 && < 2.12