summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2021-03-30 21:18:11 -0400
committerMatthias Clasen <mclasen@redhat.com>2021-03-30 21:20:36 -0400
commit708e7d1be90ccf92c17473a78218e7f43f059309 (patch)
tree62e7469b437cd5b73893759fbabb79678c92e5cc
parent5ccc0c7aa5de2667a5e0da8c35387eb662c3edff (diff)
downloadpango-708e7d1be90ccf92c17473a78218e7f43f059309.tar.gz
Bump version to 1.49.0
We are going to add new api.
-rw-r--r--meson.build2
-rw-r--r--pango/pango-version-macros.h24
2 files changed, 25 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index b52a55fc..2b66c6ce 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('pango', 'c', 'cpp',
- version: '1.48.4',
+ version: '1.49.0',
license: 'LGPLv2.1+',
default_options: [
'buildtype=debugoptimized',
diff --git a/pango/pango-version-macros.h b/pango/pango-version-macros.h
index 4008579c..84130ca3 100644
--- a/pango/pango-version-macros.h
+++ b/pango/pango-version-macros.h
@@ -272,6 +272,16 @@
*/
#define PANGO_VERSION_1_48 (G_ENCODE_VERSION (1, 48))
+/**
+ * PANGO_VERSION_1_50:
+ *
+ * A macro that evaluates to the 1.50 version of Pango, in a format
+ * that can be used by the C pre-processor.
+ *
+ * Since: 1.50
+ */
+#define PANGO_VERSION_1_50 (G_ENCODE_VERSION (1, 50))
+
/* evaluates to the current stable version; for development cycles,
* this means the next stable target
*/
@@ -705,4 +715,18 @@
# define PANGO_AVAILABLE_IN_1_48 _PANGO_EXTERN
#endif
+#if PANGO_VERSION_MIN_REQUIRED >= PANGO_VERSION_1_50
+# define PANGO_DEPRECATED_IN_1_50 PANGO_DEPRECATED
+# define PANGO_DEPRECATED_IN_1_50_FOR(f) PANGO_DEPRECATED_FOR(f)
+#else
+# define PANGO_DEPRECATED_IN_1_50 _PANGO_EXTERN
+# define PANGO_DEPRECATED_IN_1_50_FOR(f) _PANGO_EXTERN
+#endif
+
+#if PANGO_VERSION_MAX_ALLOWED < PANGO_VERSION_1_50
+# define PANGO_AVAILABLE_IN_1_50 PANGO_UNAVAILABLE(1, 50)
+#else
+# define PANGO_AVAILABLE_IN_1_50 _PANGO_EXTERN
+#endif
+
#endif /* __PANGO_VERSION_H__ */