JSONb 1.0.1 → 1.0.2
raw patch · 1 files changed
+2/−2 lines, 1 filesdep ~basePVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: base
API changes (from Hackage documentation)
- Text.JSONb.Schema: instance (Eq counter) => Eq (Elements counter)
- Text.JSONb.Schema: instance (Eq counter) => Eq (Props counter)
- Text.JSONb.Schema: instance (Eq counter) => Eq (Schema counter)
- Text.JSONb.Schema: instance (Ord counter) => Ord (Elements counter)
- Text.JSONb.Schema: instance (Ord counter) => Ord (Props counter)
- Text.JSONb.Schema: instance (Ord counter) => Ord (Schema counter)
- Text.JSONb.Schema.Display: instance (Display counter) => Display (Schema counter)
- Text.JSONb.Schema.Display: instance (Display counter) => Display (counter, Schema counter)
- Text.JSONb.Schema.Display: instance (Display counter) => Show (Schema counter)
+ Text.JSONb.Schema: instance Eq counter => Eq (Elements counter)
+ Text.JSONb.Schema: instance Eq counter => Eq (Props counter)
+ Text.JSONb.Schema: instance Eq counter => Eq (Schema counter)
+ Text.JSONb.Schema: instance Ord counter => Ord (Elements counter)
+ Text.JSONb.Schema: instance Ord counter => Ord (Props counter)
+ Text.JSONb.Schema: instance Ord counter => Ord (Schema counter)
+ Text.JSONb.Schema.Display: instance Display counter => Display (Schema counter)
+ Text.JSONb.Schema.Display: instance Display counter => Display (counter, Schema counter)
+ Text.JSONb.Schema.Display: instance Display counter => Show (Schema counter)
- Text.JSON.Escape: escape :: (Escape t) => t -> t
+ Text.JSON.Escape: escape :: Escape t => t -> t
- Text.JSONb: bytes :: (Display t) => t -> ByteString
+ Text.JSONb: bytes :: Display t => t -> ByteString
- Text.JSONb: escape :: (Escape t) => t -> t
+ Text.JSONb: escape :: Escape t => t -> t
- Text.JSONb: schema :: (Counter counter) => JSON -> Schema counter
+ Text.JSONb: schema :: Counter counter => JSON -> Schema counter
- Text.JSONb: schemas :: (Counter counter) => [JSON] -> [(counter, Schema counter)]
+ Text.JSONb: schemas :: Counter counter => [JSON] -> [(counter, Schema counter)]
- Text.JSONb.Schema: bottom :: (Counter t) => t
+ Text.JSONb.Schema: bottom :: Counter t => t
- Text.JSONb.Schema: match :: (Counter counter) => Props counter -> Props counter -> Bool
+ Text.JSONb.Schema: match :: Counter counter => Props counter -> Props counter -> Bool
- Text.JSONb.Schema: merge :: (Counter counter) => Props counter -> Props counter -> Props counter
+ Text.JSONb.Schema: merge :: Counter counter => Props counter -> Props counter -> Props counter
- Text.JSONb.Schema: plus :: (Counter t) => t -> t -> t
+ Text.JSONb.Schema: plus :: Counter t => t -> t -> t
- Text.JSONb.Schema: props :: (Counter counter) => Trie JSON -> Props counter
+ Text.JSONb.Schema: props :: Counter counter => Trie JSON -> Props counter
- Text.JSONb.Schema: schema :: (Counter counter) => JSON -> Schema counter
+ Text.JSONb.Schema: schema :: Counter counter => JSON -> Schema counter
- Text.JSONb.Schema: schemas :: (Counter counter) => [JSON] -> [(counter, Schema counter)]
+ Text.JSONb.Schema: schemas :: Counter counter => [JSON] -> [(counter, Schema counter)]
- Text.JSONb.Schema.Display: bytes :: (Display t) => t -> ByteString
+ Text.JSONb.Schema.Display: bytes :: Display t => t -> ByteString
Files
- JSONb.cabal +2/−2
JSONb.cabal view
@@ -1,5 +1,5 @@ name : JSONb-version : 1.0.1+version : 1.0.2 category : Text license : BSD3 license-file : LICENSE@@ -21,7 +21,7 @@ library- build-depends : base >= 2 && < 4+ build-depends : base >= 2 && <= 5 , containers , utf8-string >= 0.3 , bytestring >= 0.9