diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,12 @@
 
+6.3
+---
+
+* Raise microlens upper bound to build with 0.4.14 (#278)
+* Updated other bounds to permit building with GHC 9.12 (thanks Erik de
+  Catro Lopo)
+* Removed defunct examples from project
+
 6.2
 ---
 
@@ -126,8 +134,14 @@
     IO ()`, for logging to the Vty log.
   * `Graphics.Vty.Config` now exposes `VtyUserConfig` instead of
     `Config`. Many of its fields were Unix-specific and were
-    consequently moved to the `UnixSettings` type in `vty-unix`.
+    consequently moved to the `UnixSettings` type in `vty-unix` and
+    given a `settings` prefix. This includes `outputFd`, `inputFd`,
+    `vmin`, `vtime`, and `termName`.
   * The `VtyUserConfig` type's fields got a `config` field name prefix.
+  * `inputForConfig` was moved to `vty-unix` as `buildInput` but
+    generally should not be needed and is exposed only for testing.
+  * `outputForConfig` was moved to `vty-unix` as `buildOutput` but
+    generally should not be needed and is exposed only for testing.
 * Behavior changes:
   * Since `vty` no longer implements `mkVty`, the Vty user configuration
     is no longer implicitly loaded by Vty-based applications.
diff --git a/vty.cabal b/vty.cabal
--- a/vty.cabal
+++ b/vty.cabal
@@ -1,5 +1,5 @@
 name:                vty
-version:             6.2
+version:             6.3
 license:             BSD3
 license-file:        LICENSE
 author:              AUTHORS
@@ -11,12 +11,8 @@
   vty is terminal GUI library in the niche of ncurses. It is intended to
   be easy to use and to provide good support for common terminal types.
   .
-  See the @vty-examples@ package as well as the program
-  @examples/interactive_terminal_test.hs@ included in the @vty@
-  repository for examples on how to use the library.
-  .
-  Import the @Graphics.Vty@ convenience module to get access to the core
-  parts of the library.
+  See the example programs in the @vty-crossplatform@ package examples
+  on how to use the library.
   .
   &#169; 2006-2007 Stefan O'Rear; BSD3 license.
   .
@@ -29,7 +25,9 @@
                      AUTHORS,
                      CHANGELOG.md,
                      LICENSE
-tested-with:         GHC==8.0.2, GHC==8.2.2, GHC==8.4.3, GHC==8.6.5, GHC==8.8.4, GHC==8.10.7, GHC==9.0.2, GHC==9.2.8, GHC==9.4.5, GHC==9.6.2
+tested-with:         GHC==8.0.2, GHC==8.2.2, GHC==8.4.3, GHC==8.6.5, GHC==8.8.4, GHC==8.10.7,
+                     GHC==9.0.2, GHC==9.2.8, GHC==9.4.8, GHC==9.6.6, GHC==9.8.4, GHC==9.10.1,
+                     GHC==9.12.1
 
 source-repository head
   type: git
@@ -45,7 +43,7 @@
                        blaze-builder >= 0.3.3.2 && < 0.5,
                        bytestring,
                        deepseq >= 1.1 && < 1.6,
-                       microlens < 0.4.14,
+                       microlens < 0.4.15,
                        microlens-mtl,
                        mtl >= 1.1.1.0 && < 2.4,
                        stm,
