diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -15,3 +15,9 @@
 ## 0.1.2.0 -- 2022-03-24
 
 * First version revised C. Updated the dependency boundaries to support the latest GHC and Cabal versions.
+
+## 0.1.3.0 -- 2023-01-29
+
+* First version revised D. Switched to NoImplicitPrelude extension. Updated the dependency
+  boundaries.
+
diff --git a/Data/Lists/FLines.hs b/Data/Lists/FLines.hs
--- a/Data/Lists/FLines.hs
+++ b/Data/Lists/FLines.hs
@@ -1,32 +1,23 @@
 -- |
 -- Module      :  Data.Lists.FLines
--- Copyright   :  (c) OleksandrZhabenko 2020
+-- Copyright   :  (c) OleksandrZhabenko 2020-2023
 -- License     :  MIT
 -- Stability   :  Experimental
--- Maintainer  :  olexandr543@yahoo.com
+-- Maintainer  :  oleksandr.zhabenko@yahoo.com
 --
 -- Additional data and structures to some 'String'-related lists.
 --
 
-{-# LANGUAGE CPP, FlexibleInstances, MultiParamTypeClasses #-}
+{-# LANGUAGE CPP, FlexibleInstances, MultiParamTypeClasses, NoImplicitPrelude #-}
 
 module Data.Lists.FLines where
 
-#ifdef __GLASGOW_HASKELL__
-#if __GLASGOW_HASKELL__>=710
-/* code that applies only to GHC 7.10.* and higher versions */
-import GHC.Base (mconcat)
-#endif
-#endif
+import GHC.Base
+import Data.String
+import Text.Show
+import GHC.Num
+import GHC.List (null)
 import System.IO
-
-#ifdef __GLASGOW_HASKELL__
-#if __GLASGOW_HASKELL__==708
-/* code that applies only to GHC 7.8.* */
-mconcat = concat
-#endif
-#endif
-
 
 -- | 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/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2020 OleksandrZhabenko
+Copyright (c) 2020-2023 OleksandrZhabenko
 
 Permission is hereby granted, free of charge, to any person obtaining
 a copy of this software and associated documentation files (the
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.2.0
+version:             0.1.3.0
 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
@@ -19,7 +19,7 @@
 library
   exposed-modules:     Data.Lists.FLines
   -- other-modules:
-  other-extensions:    CPP, FlexibleInstances, MultiParamTypeClasses
-  build-depends:       base >=4.7 && <5
+  other-extensions:    CPP, FlexibleInstances, MultiParamTypeClasses, NoImplicitPrelude
+  build-depends:       base >=4.13 && <5
   -- hs-source-dirs:
   default-language:    Haskell2010
