rest-stringmap 0.2.0.1 → 0.2.0.2
raw patch · 3 files changed
+7/−3 lines, 3 filesdep ~aesondep ~json-schemadep ~textPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: aeson, json-schema, text
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- rest-stringmap.cabal +2/−2
- src/Rest/StringMap/Util.hs +1/−1
CHANGELOG.md view
@@ -1,5 +1,9 @@ # Changelog +#### 0.2.0.2++* Use `json-schema == 0.6.*`+ #### 0.2.0.1 * Change `JSONSchema` instances to `Map`
rest-stringmap.cabal view
@@ -1,5 +1,5 @@ name: rest-stringmap-version: 0.2.0.1+version: 0.2.0.2 license: BSD3 synopsis: Maps with stringy keys that can be transcoded to JSON and XML. description: Maps with stringy keys that can be transcoded to JSON and XML.@@ -30,7 +30,7 @@ , containers == 0.5.* , hashable == 1.2.* , hxt == 9.3.*- , json-schema == 0.5.*+ , json-schema == 0.6.* , tagged >= 0.2 && < 0.8 , text >= 0.10 && < 1.2 , tostring == 0.2.*
src/Rest/StringMap/Util.hs view
@@ -4,7 +4,7 @@ , mapSchema ) where -import Data.JSON.Schema (JSONSchema, Schema, Value (Map), schema)+import Data.JSON.Schema (JSONSchema, Schema (Map), schema) import Data.Proxy (Proxy) import Data.String (IsString (..)) import Data.String.ToString (ToString (..))