summaryrefslogtreecommitdiff
path: root/libnm-core/nm-version.h
diff options
context:
space:
mode:
Diffstat (limited to 'libnm-core/nm-version.h')
-rw-r--r--libnm-core/nm-version.h28
1 files changed, 19 insertions, 9 deletions
diff --git a/libnm-core/nm-version.h b/libnm-core/nm-version.h
index e36d921e0..e26feca6f 100644
--- a/libnm-core/nm-version.h
+++ b/libnm-core/nm-version.h
@@ -21,6 +21,8 @@
#ifndef NM_VERSION_H
#define NM_VERSION_H
+#include <glib.h>
+
/**
* NM_MAJOR_VERSION:
*
@@ -43,7 +45,7 @@
* Evaluates to the micro version number of NetworkManager which this source
* compiled against.
*/
-#define NM_MICRO_VERSION (4)
+#define NM_MICRO_VERSION (6)
/**
* NM_CHECK_VERSION:
@@ -69,9 +71,11 @@
#define NM_VERSION_1_0 (NM_ENCODE_VERSION (1, 0, 0))
#define NM_VERSION_1_0_2 (NM_ENCODE_VERSION (1, 0, 2))
#define NM_VERSION_1_0_4 (NM_ENCODE_VERSION (1, 0, 4))
+#define NM_VERSION_1_0_6 (NM_ENCODE_VERSION (1, 0, 6))
+#define NM_VERSION_1_0_8 (NM_ENCODE_VERSION (1, 0, 8))
-#define NM_VERSION_CUR_STABLE NM_VERSION_1_0_2
-#define NM_VERSION_NEXT_STABLE NM_VERSION_1_0_4
+#define NM_VERSION_CUR_STABLE NM_VERSION_1_0_6
+#define NM_VERSION_NEXT_STABLE NM_VERSION_1_0_8
#if !defined (NM_VERSION_MIN_REQUIRED) || (NM_VERSION_MIN_REQUIRED == 0)
# undef NM_VERSION_MIN_REQUIRED
@@ -102,6 +106,12 @@
# define NM_DEPRECATED_IN_0_9_10_FOR(f)
#endif
+#if NM_VERSION_MAX_ALLOWED < NM_VERSION_0_9_10
+# define NM_AVAILABLE_IN_0_9_10 G_UNAVAILABLE(0.9,10)
+#else
+# define NM_AVAILABLE_IN_0_9_10
+#endif
+
#if NM_VERSION_MIN_REQUIRED >= NM_VERSION_1_0
# define NM_DEPRECATED_IN_1_0 G_DEPRECATED
# define NM_DEPRECATED_IN_1_0_FOR(f) G_DEPRECATED_FOR(f)
@@ -110,12 +120,6 @@
# define NM_DEPRECATED_IN_1_0_FOR(f)
#endif
-#if NM_VERSION_MAX_ALLOWED < NM_VERSION_0_9_10
-# define NM_AVAILABLE_IN_0_9_10 G_UNAVAILABLE(0.9,10)
-#else
-# define NM_AVAILABLE_IN_0_9_10
-#endif
-
#if NM_VERSION_MAX_ALLOWED < NM_VERSION_1_0
# define NM_AVAILABLE_IN_1_0 G_UNAVAILABLE(1,0)
#else
@@ -128,4 +132,10 @@
# define NM_AVAILABLE_IN_1_0_4
#endif
+#if NM_VERSION_MAX_ALLOWED < NM_VERSION_1_0_6
+# define NM_AVAILABLE_IN_1_0_6 G_UNAVAILABLE(1,0.6)
+#else
+# define NM_AVAILABLE_IN_1_0_6
+#endif
+
#endif /* NM_VERSION_H */