diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,3 +3,7 @@
 ## 0.1.0.0 -- 2020-10-05
 
 * First version. Released on an unsuspecting world.
+
+## 0.1.0.1 -- 2020-10-05
+
+* First version revised A. Fixed issue with the wrong import statements order.
diff --git a/Data/Lists/FLines.hs b/Data/Lists/FLines.hs
--- a/Data/Lists/FLines.hs
+++ b/Data/Lists/FLines.hs
@@ -18,13 +18,15 @@
 import GHC.Base (mconcat)
 #endif
 #endif
+import System.IO
+
 #ifdef __GLASGOW_HASKELL__
 #if __GLASGOW_HASKELL__==708
 /* code that applies only to GHC 7.8.* */
 mconcat = concat
 #endif
 #endif
-import System.IO
+
 
 -- | Auxiliary printing function to define the line ending needed to be shown and printed. Is primarily defined in the @uniqueness-periods-vector-general@ package (https://hackage.haskell.org/package/uniqueness-periods-vector-general).
 newLineEnding :: String
diff --git a/lists-flines.cabal b/lists-flines.cabal
--- a/lists-flines.cabal
+++ b/lists-flines.cabal
@@ -2,7 +2,7 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                lists-flines
-version:             0.1.0.0
+version:             0.1.0.1
 synopsis:            Additional data and structures to some 'String'-related lists.
 description:         Is primarily used to transform some Strings read from a file.
 homepage:            https://hackage.haskell.org/package/lists-flines
