[libdazzle] Post-release version bump



commit 57ce6d47e73b706dbdce9fb65ebd50fd3b5da945
Author: Christian Hergert <chergert redhat com>
Date:   Wed Sep 12 22:17:41 2018 -0700

    Post-release version bump

 meson.build              |  4 ++--
 src/dzl-version-macros.h | 15 +++++++++++++++
 2 files changed, 17 insertions(+), 2 deletions(-)
---
diff --git a/meson.build b/meson.build
index d2622b2..70b699e 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
 project('libdazzle', 'c',
-          version: '3.30.0',
+          version: '3.31.0',
           license: 'GPLv3+',
-    meson_version: '>= 0.40.1',
+    meson_version: '>= 0.47.1',
   default_options: [ 'warning_level=1', 'buildtype=debugoptimized', 'c_std=gnu11' ],
 )
 
diff --git a/src/dzl-version-macros.h b/src/dzl-version-macros.h
index 02ecd42..81127ba 100644
--- a/src/dzl-version-macros.h
+++ b/src/dzl-version-macros.h
@@ -43,6 +43,7 @@
 
 #define DZL_VERSION_3_28 (G_ENCODE_VERSION (3, 28))
 #define DZL_VERSION_3_30 (G_ENCODE_VERSION (3, 30))
+#define DZL_VERSION_3_32 (G_ENCODE_VERSION (3, 32))
 
 #if (DZL_MINOR_VERSION == 99)
 # define DZL_VERSION_CUR_STABLE (G_ENCODE_VERSION (DZL_MAJOR_VERSION + 1, 0))
@@ -143,4 +144,18 @@
 # define DZL_AVAILABLE_IN_3_30                 _DZL_EXTERN
 #endif
 
+#if DZL_VERSION_MIN_REQUIRED >= DZL_VERSION_3_32
+# define DZL_DEPRECATED_IN_3_32                DZL_DEPRECATED
+# define DZL_DEPRECATED_IN_3_32_FOR(f)         DZL_DEPRECATED_FOR(f)
+#else
+# define DZL_DEPRECATED_IN_3_32                _DZL_EXTERN
+# define DZL_DEPRECATED_IN_3_32_FOR(f)         _DZL_EXTERN
+#endif
+
+#if DZL_VERSION_MAX_ALLOWED < DZL_VERSION_3_32
+# define DZL_AVAILABLE_IN_3_32                 DZL_UNAVAILABLE(3, 32)
+#else
+# define DZL_AVAILABLE_IN_3_32                 _DZL_EXTERN
+#endif
+
 #endif /* DZL_VERSION_MACROS_H */


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