2.6.7
diff --git a/NEWS b/NEWS
index 02ff93e..04fbe13 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,15 @@
+Overview of changes leading to 2.6.7
+Wednesday, June 3, 2020
+====================================
+- Update to Unicode 13.0.0.
+- Fix hb_ot_layout_get_ligature_carets for fonts without lcar table, it was
+  completely broken for all the other fonts since 2.1.2.
+- As a part of our migration to meson, this release will be the last one
+  to provide cmake port files but autotools still is our main build system.
+  There is a possibility that the next version or the after be released
+  using meson.
+
+
 Overview of changes leading to 2.6.6
 Tuesday, May 12, 2020
 ====================================
diff --git a/configure.ac b/configure.ac
index 5fc703a..3af266b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
 AC_PREREQ([2.64])
 AC_INIT([HarfBuzz],
-        [2.6.6],
+        [2.6.7],
         [https://github.com/harfbuzz/harfbuzz/issues/new],
         [harfbuzz],
         [http://harfbuzz.org/])
diff --git a/meson.build b/meson.build
index 15144e9..65d3192 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
 project('harfbuzz', 'c', 'cpp',
   meson_version: '>= 0.53.0',
   default_options : ['cpp_std=c++11'],
-  version: '2.6.6')
+  version: '2.6.7')
 
 warning('Meson is not our main build system yet, don\'t use it for packaging HarfBuzz for *nix distros for now')
 
diff --git a/src/hb-common.h b/src/hb-common.h
index 3d963f4..a97a5f5 100644
--- a/src/hb-common.h
+++ b/src/hb-common.h
@@ -368,7 +368,7 @@
   /*12.0*/HB_SCRIPT_WANCHO			= HB_TAG ('W','c','h','o'),
 
   /*
-   * Since REPLACEME
+   * Since 2.6.7
    */
   /*13.0*/HB_SCRIPT_CHORASMIAN			= HB_TAG ('C','h','r','s'),
   /*13.0*/HB_SCRIPT_DIVES_AKURU			= HB_TAG ('D','i','a','k'),
diff --git a/src/hb-version.h b/src/hb-version.h
index 0abec8d..f3ac9b0 100644
--- a/src/hb-version.h
+++ b/src/hb-version.h
@@ -38,9 +38,9 @@
 
 #define HB_VERSION_MAJOR 2
 #define HB_VERSION_MINOR 6
-#define HB_VERSION_MICRO 6
+#define HB_VERSION_MICRO 7
 
-#define HB_VERSION_STRING "2.6.6"
+#define HB_VERSION_STRING "2.6.7"
 
 #define HB_VERSION_ATLEAST(major,minor,micro) \
 	((major)*10000+(minor)*100+(micro) <= \