diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,8 @@
 # Changelog and Acknowledgments
 
+## 1.0.3
+* Fixed build issue with microlens-0.5.0.0.
+
 ## 1.0.2
 * Added microlens (or, with `lens` flag, lens) dependency.
   * `uncurriedN` and `uncurriedN'` `Lens`es (or `Iso`s)
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -2,7 +2,17 @@
 
 [![Hackage](https://img.shields.io/hackage/v/tuple-classes)](https://hackage.haskell.org/package/tuple-classes)
 
-Haskell facilities for manipulating _n_-ary tuples and functions in lazy and strict varieties, plus strict tuples.
+Haskell facilities for manipulating _n_-ary tuples and functions.
+  * ❨Generalized uncurrying and un-uncurrying❩
+  * ❨Inserting and removing fields❩
+  * ❨van Laarhoven optics ❟ courtesy microlens❩
+    * ❨Build with flag `tuple-classes:lens` for `Iso`s instead❩
+  * ❨Designed to complement the popular [strict](https://hackage.haskell.org/package/strict) package❩
+  * ❨`StrictTuple3` ❟ `StrictTuple4` ❟ ... up to `StrictTuple9` provided❩
+  * ❨More instances than you can shake a stick at❩
+    * ❨`Strict`❩
+    * ❨`Each` ❨`each`❩ and `Field1` ❨`_1`❩ ❟ `Field2` ❨`_2`❩ ❟ etc.❩
+  * ❨Pragmatic re-exports❩
 
 ```haskell
 {-# LANGUAGE DataKinds #-}
diff --git a/src/Data/Tuple/Classes/TH.hs b/src/Data/Tuple/Classes/TH.hs
--- a/src/Data/Tuple/Classes/TH.hs
+++ b/src/Data/Tuple/Classes/TH.hs
@@ -37,9 +37,7 @@
 import Data.Functor.Identity (Identity(..))
 import Lens.Micro
 import Lens.Micro.Internal   qualified as Lens.Micro
-#if !MIN_VERSION_microlens(0,5,0)
-import Lens.Micro.Internal hiding (Strict)
-#endif
+import Lens.Micro.Internal   hiding (Strict)
 #endif
 
 dropLast :: Int -> [a] -> [a]
diff --git a/tuple-classes.cabal b/tuple-classes.cabal
--- a/tuple-classes.cabal
+++ b/tuple-classes.cabal
@@ -5,7 +5,7 @@
 -- see: https://github.com/sol/hpack
 
 name:           tuple-classes
-version:        1.0.2
+version:        1.0.3
 synopsis:       Working with n-ary tuples and functions; strict tuples
 description:    Please see the README on Codeberg at <https://codeberg.org/sjshuck/tuple-classes#readme>
 category:       data
