diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
diff --git a/blockfrost-api.cabal b/blockfrost-api.cabal
--- a/blockfrost-api.cabal
+++ b/blockfrost-api.cabal
@@ -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
diff --git a/src/Blockfrost/Types/Cardano/Scripts.hs b/src/Blockfrost/Types/Cardano/Scripts.hs
--- a/src/Blockfrost/Types/Cardano/Scripts.hs
+++ b/src/Blockfrost/Types/Cardano/Scripts.hs
@@ -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
