summaryrefslogtreecommitdiff
path: root/Makefile.examples
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2018-01-16 15:19:12 +0100
committerThomas Haller <thaller@redhat.com>2018-01-23 10:50:34 +0100
commit8a040c6883936e9d76ef072424659fa969c3f945 (patch)
tree5890b9eb650d447ffb73d3788f62ff5d66d55435 /Makefile.examples
parentf67686256f3128cd5a4eba4cb93283012529f065 (diff)
downloadNetworkManager-8a040c6883936e9d76ef072424659fa969c3f945.tar.gz
version: combine NM_VERSION_CUR_STABLE and NM_VERSION_NEXT_STABLE
We don't need to have two version defines "CUR" and "NEXT". The main purpose of these macros (if not their only), is to make NM_AVAILABLE_IN_* and NM_DEPRECATED_IN_* macros work. 1) At the precise commit of a release, "CUR" and "NEXT" must be identical, because whenever the user configures NM_VERSION_MIN_REQUIRED and NM_VERSION_MAX_ALLOWED, then they both compare against the current version, at which point "CUR" == "NEXT". 2) Every other commit aside the release, is a development version that leads up the the next coming release. But as far as versioning is concerned, such a development version should be treated like that future release. It's unstable API and it may or may not be close to later API of the release. But we shall treat it as that version. Hence, also in this case, we want to set both "NM_VERSION_CUR_STABLE" and again NEXT to the future version. This makes NM_VERSION_NEXT_STABLE redundant. Previously, the separation between current and next version would for example allow that NM_VERSION_CUR_STABLE is the previously release stable API, and NM_VERSION_NEXT_STABLE is the version of the next upcoming stable API. So, we could allow "examples" to make use of development API, but other(?) internal code still restrict to unstable API. But it's unclear which other code would want to avoid current development. Also, the points 1) and 2) were badly understood. Note that for our previousy releases, we usually didn't bump the macros at the stable release (and if we did, we didn't set them to be the same). While using two macros might be more powerful, it is hard to grok and easy to forget to bump the macros a the right time. One macro shall suffice. All this also means, that *immediately* after making a new release, we shall bump the version number in `configure.ac` and "NM_VERSION_CUR_STABLE".
Diffstat (limited to 'Makefile.examples')
-rw-r--r--Makefile.examples2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.examples b/Makefile.examples
index d58fd22a22..efbbe289f5 100644
--- a/Makefile.examples
+++ b/Makefile.examples
@@ -10,7 +10,7 @@ examples_C_glib_cppflags = \
-I$(top_srcdir)/libnm \
-I$(top_builddir)/libnm \
$(GLIB_CFLAGS) \
- -DNM_VERSION_MAX_ALLOWED=NM_VERSION_NEXT_STABLE
+ -DNM_VERSION_MAX_ALLOWED=NM_VERSION_CUR_STABLE
examples_C_glib_cppflags_gdbus = $(examples_C_glib_cppflags)
examples_C_glib_cppflags_libnm = $(examples_C_glib_cppflags)