release: bump version to 1.8.6

This commit is contained in:
Lubomir Rintel 2018-01-15 11:06:57 +01:00
parent 9e5959231c
commit 15eeb1c895
3 changed files with 5 additions and 4 deletions

2
NEWS
View file

@ -16,7 +16,7 @@ This is a new stable release of NetworkManager. Notable changes include:
reusing the same file descriptor (rh#1451236)
* Connectivity check fixes (bgo#785281) (bgo#784629)
* Fix the metered properties handling in libnm
* Avoid dropping agent secrets unnecesarily (bgo#789383)
* Avoid dropping agent secrets unnecessarily (bgo#789383)
* Fix the asynchronous initialization of a secret agent in libnm
==============================================

View file

@ -3,7 +3,7 @@ AC_PREREQ([2.63])
dnl The NM version number
m4_define([nm_major_version], [1])
m4_define([nm_minor_version], [8])
m4_define([nm_micro_version], [5])
m4_define([nm_micro_version], [6])
m4_define([nm_version],
[nm_major_version.nm_minor_version.nm_micro_version])

View file

@ -74,9 +74,10 @@
#define NM_VERSION_1_8_2 (NM_ENCODE_VERSION (1, 8, 2))
#define NM_VERSION_1_8_4 (NM_ENCODE_VERSION (1, 8, 4))
#define NM_VERSION_1_8_6 (NM_ENCODE_VERSION (1, 8, 6))
#define NM_VERSION_1_8_8 (NM_ENCODE_VERSION (1, 8, 8))
#define NM_VERSION_CUR_STABLE NM_VERSION_1_8_4
#define NM_VERSION_NEXT_STABLE NM_VERSION_1_8_6
#define NM_VERSION_CUR_STABLE NM_VERSION_1_8_6
#define NM_VERSION_NEXT_STABLE NM_VERSION_1_8_8
#define NM_VERSION NM_ENCODE_VERSION (NM_MAJOR_VERSION, NM_MINOR_VERSION, NM_MICRO_VERSION)