diff --git a/jsonrpc-tinyclient.cabal b/jsonrpc-tinyclient.cabal
--- a/jsonrpc-tinyclient.cabal
+++ b/jsonrpc-tinyclient.cabal
@@ -1,15 +1,15 @@
 cabal-version: 1.12
 name:          jsonrpc-tinyclient
-version:       1.0.0.0
+version:       1.0.1.0
 license:       Apache-2.0
 license-file:  LICENSE
-copyright:     (c) Aleksandr Krupenkin 2016-2021
+copyright:     (c) Aleksandr Krupenkin 2016-2024
 maintainer:    mail@akru.me
 author:        Aleksandr Krupenkin
 homepage:      https://github.com/airalab/hs-web3#readme
 bug-reports:   https://github.com/airalab/hs-web3/issues
 synopsis:      Tiny JSON-RPC client for Haskell Web3 library.
-description:   Client library for Third Generation of Web.
+description:   Minimalistic JSON-RPC client, inspired by haxr library.
 category:      Network
 build-type:    Simple
 
@@ -23,23 +23,23 @@
     other-modules:    Paths_jsonrpc_tinyclient
     default-language: Haskell2010
     ghc-options:
-        -funbox-strict-fields -Wduplicate-exports -Whi-shadowing
-        -Widentities -Woverlapping-patterns -Wpartial-type-signatures
+        -funbox-strict-fields -Wduplicate-exports -Widentities
+        -Woverlapping-patterns -Wpartial-type-signatures
         -Wunrecognised-pragmas -Wtyped-holes -Wincomplete-patterns
         -Wincomplete-uni-patterns -Wmissing-fields -Wmissing-methods
-        -Wmissing-exported-signatures -Wmissing-monadfail-instances
-        -Wmissing-signatures -Wname-shadowing -Wunused-binds
-        -Wunused-top-binds -Wunused-local-binds -Wunused-pattern-binds
-        -Wunused-imports -Wunused-matches -Wunused-foralls -Wtabs
+        -Wmissing-exported-signatures -Wmissing-signatures -Wname-shadowing
+        -Wunused-binds -Wunused-top-binds -Wunused-local-binds
+        -Wunused-pattern-binds -Wunused-imports -Wunused-matches
+        -Wunused-foralls -Wtabs
 
     build-depends:
-        aeson >1.2 && <1.6,
-        base >4.11 && <4.15,
-        bytestring >0.10 && <0.11,
+        aeson >1.2 && <2.2,
+        base >4.11 && <4.19,
+        bytestring >0.10 && <0.12,
         exceptions >0.8 && <0.11,
-        http-client >0.5 && <0.7,
+        http-client >0.5 && <0.8,
         http-client-tls >0.3 && <0.4,
-        mtl >2.2 && <2.3,
+        mtl >2.2 && <2.4,
         random >1.0 && <1.3,
-        text >1.2 && <1.3,
+        text >1.2 && <2.1,
         websockets >0.10 && <0.13
diff --git a/src/Network/JsonRpc/TinyClient.hs b/src/Network/JsonRpc/TinyClient.hs
--- a/src/Network/JsonRpc/TinyClient.hs
+++ b/src/Network/JsonRpc/TinyClient.hs
@@ -11,7 +11,7 @@
 
 -- |
 -- Module      :  Network.JsonRpc.TinyClient
--- Copyright   :  Aleksandr Krupenkin 2016-2018
+-- Copyright   :  Aleksandr Krupenkin 2016-2024
 -- License     :  Apache-2.0
 --
 -- Maintainer  :  mail@akru.me
@@ -106,7 +106,7 @@
 
 instance Show JsonRpcClient where
     show JsonRpcHttpClient{..} = "<JSON-RPC HTTP Client>"
-    show JsonRpcWsClient{..} = "<JSON-RPC WebSocket Client>"
+    show JsonRpcWsClient{..}   = "<JSON-RPC WebSocket Client>"
 
 -- | JSON-RPC request.
 data Request = Request
