8.2.0
diff --git a/NEWS b/NEWS
index 0a7b94b..35e9eef 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,15 @@
+Overview of changes leading to 8.2.0
+Friday, September 8, 2023
+====================================
+- Various build and fuzzing fixes
+- Improvements to COLRv1 painting.
+
+- New API:
++hb_paint_color_glyph_func_t
++hb_paint_funcs_set_color_glyph_func
++hb_paint_color_glyph
+
+
 Overview of changes leading to 8.1.1
 Wednesday, August 2, 2023
 ====================================
diff --git a/configure.ac b/configure.ac
index 9425708..6de79ae 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
 AC_PREREQ([2.64])
 AC_INIT([HarfBuzz],
-        [8.1.1],
+        [8.2.0],
         [https://github.com/harfbuzz/harfbuzz/issues/new],
         [harfbuzz],
         [http://harfbuzz.org/])
diff --git a/docs/harfbuzz-docs.xml b/docs/harfbuzz-docs.xml
index 53b0a79..59bf821 100644
--- a/docs/harfbuzz-docs.xml
+++ b/docs/harfbuzz-docs.xml
@@ -120,6 +120,7 @@
       <index id="api-index-full"><title>API Index</title><xi:include href="xml/api-index-full.xml"><xi:fallback /></xi:include></index>
       <index id="deprecated-api-index"><title>Index of deprecated API</title><xi:include href="xml/api-index-deprecated.xml"><xi:fallback /></xi:include></index>
 
+      <index id="api-index-8-2-0"><title>Index of new symbols in 8.2.0</title><xi:include href="xml/api-index-8.2.0.xml"><xi:fallback /></xi:include></index>
       <index id="api-index-8-1-0"><title>Index of new symbols in 8.1.0</title><xi:include href="xml/api-index-8.1.0.xml"><xi:fallback /></xi:include></index>
       <index id="api-index-8-0-0"><title>Index of new symbols in 8.0.0</title><xi:include href="xml/api-index-8.0.0.xml"><xi:fallback /></xi:include></index>
       <index id="api-index-7-3-0"><title>Index of new symbols in 7.3.0</title><xi:include href="xml/api-index-7.3.0.xml"><xi:fallback /></xi:include></index>
diff --git a/meson.build b/meson.build
index 768f663..3bc98e2 100644
--- a/meson.build
+++ b/meson.build
@@ -1,6 +1,6 @@
 project('harfbuzz', 'c', 'cpp',
   meson_version: '>= 0.55.0',
-  version: '8.1.1',
+  version: '8.2.0',
   default_options: [
     'cpp_eh=none',          # Just to support msvc, we are passing -fno-exceptions also anyway
     # 'cpp_rtti=false',     # Do NOT enable, wraps inherit it and ICU needs RTTI
diff --git a/src/hb-paint.cc b/src/hb-paint.cc
index 0a53845..8eb24eb 100644
--- a/src/hb-paint.cc
+++ b/src/hb-paint.cc
@@ -488,7 +488,7 @@
  *
  * Perform a "color-glyph" paint operation.
  *
- * XSince: REPLACEME
+ * Since: 8.2.0
  */
 hb_bool_t
 hb_paint_color_glyph (hb_paint_funcs_t *funcs, void *paint_data,
diff --git a/src/hb-paint.h b/src/hb-paint.h
index 74f49f0..b0cd384 100644
--- a/src/hb-paint.h
+++ b/src/hb-paint.h
@@ -148,7 +148,7 @@
  *
  * Return value: %true if the glyph was painted, %false otherwise.
  *
- * XSince: REPLACEME
+ * Since: 8.2.0
  */
 typedef hb_bool_t (*hb_paint_color_glyph_func_t) (hb_paint_funcs_t *funcs,
                                                   void *paint_data,
@@ -752,7 +752,7 @@
  *
  * Sets the color-glyph callback on the paint functions struct.
  *
- * Since: 7.0.0
+ * Since: 8.2.0
  */
 HB_EXTERN void
 hb_paint_funcs_set_color_glyph_func (hb_paint_funcs_t                *funcs,
diff --git a/src/hb-version.h b/src/hb-version.h
index 773395f..902d51e 100644
--- a/src/hb-version.h
+++ b/src/hb-version.h
@@ -47,20 +47,20 @@
  *
  * The minor component of the library version available at compile-time.
  */
-#define HB_VERSION_MINOR 1
+#define HB_VERSION_MINOR 2
 /**
  * HB_VERSION_MICRO:
  *
  * The micro component of the library version available at compile-time.
  */
-#define HB_VERSION_MICRO 1
+#define HB_VERSION_MICRO 0
 
 /**
  * HB_VERSION_STRING:
  *
  * A string literal containing the library version available at compile-time.
  */
-#define HB_VERSION_STRING "8.1.1"
+#define HB_VERSION_STRING "8.2.0"
 
 /**
  * HB_VERSION_ATLEAST: