summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2018-10-15 10:48:42 -0700
committerMatthias Clasen <mclasen@redhat.com>2018-11-19 16:03:17 -0500
commite9336a0a28774395f43ebd9271f2efc332300084 (patch)
treeafd9214946a437b18b9189f0cbd43e99952c7768
parent0d8b48284b8d90b19b3f9ffdd75335bece3c3818 (diff)
downloadpango-e9336a0a28774395f43ebd9271f2efc332300084.tar.gz
Bump version to 1.43
We're going to add new api, so add version markers etc.
-rw-r--r--meson.build2
-rw-r--r--pango/pango-version-macros.h26
2 files changed, 26 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index 48c2981b..76df11b1 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('pango', 'c', 'cpp',
- version: '1.42.3',
+ version: '1.43.0',
license: 'LGPLv2.1+',
default_options: [
'buildtype=debugoptimized',
diff --git a/pango/pango-version-macros.h b/pango/pango-version-macros.h
index 5d66ab8c..8c61bb77 100644
--- a/pango/pango-version-macros.h
+++ b/pango/pango-version-macros.h
@@ -235,13 +235,23 @@
/**
* PANGO_VERSION_1_42:
*
- * A macro that evaluates to the 2.38 version of Pango, in a format
+ * A macro that evaluates to the 1.42 version of Pango, in a format
* that can be used by the C pre-processor.
*
* Since: 1.42
*/
#define PANGO_VERSION_1_42 (G_ENCODE_VERSION (1, 42))
+/**
+ * PANGO_VERSION_1_44:
+ *
+ * A macro that evaluates to the 1.44 version of Pango, in a format
+ * that can be used by the C pre-processor.
+ *
+ * Since: 1.44
+ */
+#define PANGO_VERSION_1_44 (G_ENCODE_VERSION (1, 44))
+
/* evaluates to the current stable version; for development cycles,
* this means the next stable target
*/
@@ -633,4 +643,18 @@
# define PANGO_AVAILABLE_IN_1_42 _PANGO_EXTERN
#endif
+#if PANGO_VERSION_MIN_REQUIRED >= PANGO_VERSION_1_44
+# define PANGO_DEPRECATED_IN_1_44 PANGO_DEPRECATED
+# define PANGO_DEPRECATED_IN_1_44_FOR(f) PANGO_DEPRECATED_FOR(f)
+#else
+# define PANGO_DEPRECATED_IN_1_44 _PANGO_EXTERN
+# define PANGO_DEPRECATED_IN_1_44_FOR(f) _PANGO_EXTERN
+#endif
+
+#if PANGO_VERSION_MAX_ALLOWED < PANGO_VERSION_1_44
+# define PANGO_AVAILABLE_IN_1_44 PANGO_UNAVAILABLE(1, 44)
+#else
+# define PANGO_AVAILABLE_IN_1_44 _PANGO_EXTERN
+#endif
+
#endif /* __PANGO_VERSION_H__ */