Update CHANGELOG and CMakeLists.txt for v3.14.1

Bug: 514751615
Change-Id: Ic20f2757cdd3b682c8b9c8736d4771ada8c3a481
diff --git a/CHANGELOG b/CHANGELOG
index 732e8fe..99a682f 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,12 @@
+2026-05-19 v3.14.1
+  This release is ABI compatible with the last release. See
+  https://aomedia.googlesource.com/aom/+log/v3.14.0..v3.14.1 for all the
+  commits in this release.
+
+  - Bug Fixes
+    * b:513603812: NULL Pointer Dereference in validate_img
+      (av1_cx_iface.c) with 10-bit monochrome input
+
 2026-05-12 v3.14.0
   This release is ABI compatible with the last release.
 
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 2bd2f18..2bccc36 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -23,7 +23,7 @@
 
 # VERSION is the release version of the library. It should be updated at the
 # same time as the LT_* variables.
-project(AOM LANGUAGES C CXX VERSION 3.14.0)
+project(AOM LANGUAGES C CXX VERSION 3.14.1)
 
 # GENERATED source property global visibility.
 if(POLICY CMP0118)
@@ -59,7 +59,7 @@
 #
 # The VERSION number in project() should be updated when these variables are.
 set(LT_CURRENT 17)
-set(LT_REVISION 0)
+set(LT_REVISION 1)
 set(LT_AGE 14)
 math(EXPR SO_VERSION "${LT_CURRENT} - ${LT_AGE}")
 set(SO_FILE_VERSION "${SO_VERSION}.${LT_AGE}.${LT_REVISION}")