2.6.0
diff --git a/src/hb-font.cc b/src/hb-font.cc
index 44953c9..e6339cd 100644
--- a/src/hb-font.cc
+++ b/src/hb-font.cc
@@ -1890,7 +1890,7 @@
*
* Sets design coords of a font from a named instance index.
*
- * Since: REPLACEME
+ * Since: 2.6.0
*/
void
hb_font_set_var_named_instance (hb_font_t *font,
diff --git a/src/hb-gdi.cc b/src/hb-gdi.cc
index 526f1cd..d55085c 100644
--- a/src/hb-gdi.cc
+++ b/src/hb-gdi.cc
@@ -62,7 +62,7 @@
*
* Return value: #hb_face_t object corresponding to the given input
*
- * Since: REPLACEME
+ * Since: 2.6.0
**/
hb_face_t *
hb_gdi_face_create (HFONT hfont)
diff --git a/src/hb-ot-layout.cc b/src/hb-ot-layout.cc
index 5286435..d95e5a0 100644
--- a/src/hb-ot-layout.cc
+++ b/src/hb-ot-layout.cc
@@ -1954,6 +1954,8 @@
* Fetches a baseline value from the face.
*
* Return value: if found baseline value in the the font.
+ *
+ * Since: 2.6.0
**/
hb_bool_t
hb_ot_layout_get_baseline (hb_font_t *font,
diff --git a/src/hb-ot-layout.h b/src/hb-ot-layout.h
index 61cd157..5124c1e 100644
--- a/src/hb-ot-layout.h
+++ b/src/hb-ot-layout.h
@@ -428,7 +428,7 @@
*
* Baseline tags from https://docs.microsoft.com/en-us/typography/opentype/spec/baselinetags
*
- * Since: REPLACEME
+ * Since: 2.6.0
*/
typedef enum {
HB_OT_LAYOUT_BASELINE_TAG_ROMAN = HB_TAG ('r','o','m','n'),
diff --git a/src/hb-ot-meta.cc b/src/hb-ot-meta.cc
index 158bedf..a1e081b 100644
--- a/src/hb-ot-meta.cc
+++ b/src/hb-ot-meta.cc
@@ -46,7 +46,7 @@
*
* Return value: Number of all available feature types.
*
- * Since: REPLACEME
+ * Since: 2.6.0
**/
unsigned int
hb_ot_meta_get_entry_tags (hb_face_t *face,
@@ -66,7 +66,7 @@
*
* Returns: (transfer full): A blob containing the blob.
*
- * Since: REPLACEME
+ * Since: 2.6.0
**/
hb_blob_t *
hb_ot_meta_reference_entry (hb_face_t *face, hb_ot_meta_tag_t meta_tag)
diff --git a/src/hb-ot-meta.h b/src/hb-ot-meta.h
index e19be15..0278d84 100644
--- a/src/hb-ot-meta.h
+++ b/src/hb-ot-meta.h
@@ -44,7 +44,7 @@
*
* Known metadata tags from https://docs.microsoft.com/en-us/typography/opentype/spec/meta
*
- * Since: REPLACEME
+ * Since: 2.6.0
**/
typedef enum {
/*
diff --git a/src/hb-ot-metrics.cc b/src/hb-ot-metrics.cc
index f04984c..181ac4d 100644
--- a/src/hb-ot-metrics.cc
+++ b/src/hb-ot-metrics.cc
@@ -117,7 +117,7 @@
* It fetches metrics value corresponding to a given tag from a font.
*
* Returns: Whether found the requested metrics in the font.
- * Since: REPLACEME
+ * Since: 2.6.0
**/
hb_bool_t
hb_ot_metrics_get_position (hb_font_t *font,
@@ -189,7 +189,7 @@
*
* Returns:
*
- * Since: REPLACEME
+ * Since: 2.6.0
**/
float
hb_ot_metrics_get_variation (hb_font_t *font, hb_ot_metrics_tag_t metrics_tag)
@@ -204,7 +204,7 @@
*
* Returns:
*
- * Since: REPLACEME
+ * Since: 2.6.0
**/
hb_position_t
hb_ot_metrics_get_x_variation (hb_font_t *font, hb_ot_metrics_tag_t metrics_tag)
@@ -219,7 +219,7 @@
*
* Returns:
*
- * Since: REPLACEME
+ * Since: 2.6.0
**/
hb_position_t
hb_ot_metrics_get_y_variation (hb_font_t *font, hb_ot_metrics_tag_t metrics_tag)
diff --git a/src/hb-ot-metrics.h b/src/hb-ot-metrics.h
index 7f0d773..42c7363 100644
--- a/src/hb-ot-metrics.h
+++ b/src/hb-ot-metrics.h
@@ -68,7 +68,7 @@
*
* From https://docs.microsoft.com/en-us/typography/opentype/spec/mvar#value-tags
*
- * Since: REPLACEME
+ * Since: 2.6.0
**/
typedef enum {
HB_OT_METRICS_TAG_HORIZONTAL_ASCENDER = HB_TAG ('h','a','s','c'),
diff --git a/src/hb-version.h b/src/hb-version.h
index 251cc63..3f0ccaf 100644
--- a/src/hb-version.h
+++ b/src/hb-version.h
@@ -37,10 +37,10 @@
#define HB_VERSION_MAJOR 2
-#define HB_VERSION_MINOR 5
-#define HB_VERSION_MICRO 3
+#define HB_VERSION_MINOR 6
+#define HB_VERSION_MICRO 0
-#define HB_VERSION_STRING "2.5.3"
+#define HB_VERSION_STRING "2.6.0"
#define HB_VERSION_ATLEAST(major,minor,micro) \
((major)*10000+(minor)*100+(micro) <= \