diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,4 +4,7 @@
 
 * First version. Released on an unsuspecting world.
 
+## 0.2.0.0 -- 2023-06-22
+
+* Second version. Added showWithSpaces function.
 
diff --git a/Phladiprelio/Halfsplit.hs b/Phladiprelio/Halfsplit.hs
--- a/Phladiprelio/Halfsplit.hs
+++ b/Phladiprelio/Halfsplit.hs
@@ -66,3 +66,10 @@
             | k < l = (rss, js:mss, k + length js)
             | otherwise = (js : rss, mss, k + length js)
 
+showWithSpaces :: (Show a) => Int -> a -> String
+showWithSpaces n x 
+ | l < n = xs `mappend` replicate (n - l) ' '
+ | otherwise = xs
+    where xs = show x
+          l = length xs
+
diff --git a/halfsplit.cabal b/halfsplit.cabal
--- a/halfsplit.cabal
+++ b/halfsplit.cabal
@@ -1,12 +1,12 @@
 cabal-version:      2.4
 name:               halfsplit
-version:            0.1.0.0
+version:            0.2.0.0
 
 -- A short (one-line) description of the package.
 synopsis:           A library to provide special kind of two-column terminal output for Phladiprelio. 
 
 -- A longer description of the package.
-description:        Provides function for two-column terminal output for newer versions of Phladiprelio projects. Is intended to improve UI and UX for the work with them.       
+description:        Provides functions for two-column terminal output for newer versions of Phladiprelio projects. Is intended to improve UI and UX for the work with them.       
 
 -- A URL where users can report bugs.
 -- bug-reports:
