[pango/variable-face: 25/29] Bump version to 1.43



commit 9a30ddd0616949d6bb6c5b93f23258901ea9810c
Author: Matthias Clasen <mclasen redhat com>
Date:   Mon Oct 15 10:48:42 2018 -0700

    Bump version to 1.43
    
    We're going to add new api, so add version markers etc.

 meson.build                  |  2 +-
 pango/pango-version-macros.h | 26 +++++++++++++++++++++++++-
 2 files changed, 26 insertions(+), 2 deletions(-)
---
diff --git a/meson.build b/meson.build
index aad51b4d..bd5bd0c3 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__ */


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]