diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,3 +1,11 @@
 # Changelog for http2-client-exe
 
 ## Unreleased changes
+
+## v0.1.0.1
+
+- Display frame headers flags value in verbose mode.
+
+## v0.1.0.0
+
+- Initial release
diff --git a/app/Main.hs b/app/Main.hs
--- a/app/Main.hs
+++ b/app/Main.hs
@@ -199,7 +199,7 @@
                 in frameClient {
                        _sendFrames = \mkFrames -> do
                            xs <- mkFrames
-                           print $ (">>> "::String, _getStreamId frameClient, map snd xs)
+                           print $ (">>> "::String, _getStreamId frameClient, [ (fhF 0, frame) | (fhF,frame) <- xs])
                            _sendFrames frameClient (pure xs)
                    }
           , _serverStream =
diff --git a/http2-client-exe.cabal b/http2-client-exe.cabal
--- a/http2-client-exe.cabal
+++ b/http2-client-exe.cabal
@@ -2,10 +2,10 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: 2435e1500ee58000db937e0d9eb76a8758c70f4a4de86034c9313a08bab92df8
+-- hash: 3afee4bff1d4662c29aa7f3d705beead8e40f191826724bcf634a558c2bb3e34
 
 name:           http2-client-exe
-version:        0.1.0.0
+version:        0.1.0.1
 synopsis:       A command-line http2 client.
 description:    A reference command-line tool using http2-client. Please see the README on GitHub at <https://github.com/lucasdicioccio/http2-client-exe#readme>
 category:       Web
