diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
 # Changelog
 
+## [0.1.0.3] - 2022-07-14
+
+### Changed
+
+* Doctest fix
+
 ## [0.1.0.2] - 2022-06-24
 
 ### Added
diff --git a/autodocodec.cabal b/autodocodec.cabal
--- a/autodocodec.cabal
+++ b/autodocodec.cabal
@@ -5,13 +5,13 @@
 -- see: https://github.com/sol/hpack
 
 name:           autodocodec
-version:        0.1.0.2
+version:        0.1.0.3
 synopsis:       Self-documenting encoder and decoder
 homepage:       https://github.com/NorfairKing/autodocodec#readme
 bug-reports:    https://github.com/NorfairKing/autodocodec/issues
 author:         Tom Sydney Kerckhove
 maintainer:     syd@cs-syd.eu
-copyright:      2021 Tom Sydney Kerckhove
+copyright:      2021-2022 Tom Sydney Kerckhove
 license:        MIT
 license-file:   LICENSE
 build-type:     Simple
diff --git a/src/Autodocodec/Codec.hs b/src/Autodocodec/Codec.hs
--- a/src/Autodocodec/Codec.hs
+++ b/src/Autodocodec/Codec.hs
@@ -1137,8 +1137,8 @@
 --
 -- >>> toJSONVia scientificCodec 5
 -- Number 5.0
--- >>> JSON.parseMaybe scientificCodec (Number 3)
--- Just 3
+-- >>> JSON.parseMaybe (parseJSONVia scientificCodec) (Number 3)
+-- Just 3.0
 --
 --
 -- === WARNING
@@ -1172,7 +1172,7 @@
 -- >>> toJSONVia c 5
 -- Number 5.0
 -- >>> JSON.parseMaybe (parseJSONVia c) (Number 3)
--- Just 3
+-- Just 3.0
 -- >>> JSON.parseMaybe (parseJSONVia c) (Number 5)
 -- Nothing
 --
