blockfrost-api 0.10.0.0 → 0.11.0.0
raw patch · 3 files changed
+9/−3 lines, 3 filesdep ~lensPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: lens
API changes (from Hackage documentation)
+ Blockfrost.Types.Cardano.Scripts: PlutusV3 :: ScriptType
Files
- CHANGELOG.md +6/−0
- blockfrost-api.cabal +2/−2
- src/Blockfrost/Types/Cardano/Scripts.hs +1/−1
CHANGELOG.md view
@@ -1,3 +1,9 @@+# Version [0.11.0.0](https://github.com/blockfrost/blockfrost-haskell/compare/api-0.10.0.0...api-0.11.0.0) (2024-08-26)++Changes+ * `ScriptType`+ * adds `PlutusV3` [#54](https://github.com/blockfrost/blockfrost-haskell/pull/54)+ # Version [0.10.0.0](https://github.com/blockfrost/blockfrost-haskell/compare/api-0.9.0.0...api-0.10.0.0) (2024-02-16) * Fixed
blockfrost-api.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.2 name: blockfrost-api-version: 0.10.0.0+version: 0.11.0.0 synopsis: API definitions for blockfrost.io description: Core types and Servant API description homepage: https://github.com/blockfrost/blockfrost-haskell@@ -131,7 +131,7 @@ , time , aeson >= 2.0 && < 3.0 , deriving-aeson- , lens >= 5.0 && < 5.3+ , lens >= 5.0 && < 5.4 , template-haskell , servant >= 0.18 && < 0.21 , servant-docs
src/Blockfrost/Types/Cardano/Scripts.hs view
@@ -19,7 +19,7 @@ import Blockfrost.Types.Shared -- | Script type-data ScriptType = PlutusV1 | PlutusV2 | Timelock+data ScriptType = PlutusV1 | PlutusV2 | PlutusV3 | Timelock deriving stock (Show, Eq, Ord, Generic) deriving (FromJSON, ToJSON) via CustomJSON '[ConstructorTagModifier '[ToLower]] ScriptType