Release 2017.2
We should get a release out to try to keep with at least a once-a-month cadence. This one has some exciting stuff like libcurl and Rust, and various bugfixes. Also importantly I want to cut this *before* we land some other bigger stuff, so rpm-ostree can start using the reload_config API etc. Closes: #685 Approved by: jlebon
This commit is contained in:
parent
4e908f867d
commit
da21d7350e
|
|
@ -1,6 +1,6 @@
|
||||||
AC_PREREQ([2.63])
|
AC_PREREQ([2.63])
|
||||||
dnl If incrementing the version here, remember to update libostree.sym too
|
dnl If incrementing the version here, remember to update libostree.sym too
|
||||||
AC_INIT([libostree], [2017.1], [walters@verbum.org])
|
AC_INIT([libostree], [2017.2], [walters@verbum.org])
|
||||||
AC_CONFIG_HEADER([config.h])
|
AC_CONFIG_HEADER([config.h])
|
||||||
AC_CONFIG_MACRO_DIR([buildutil])
|
AC_CONFIG_MACRO_DIR([buildutil])
|
||||||
AC_CONFIG_AUX_DIR([build-aux])
|
AC_CONFIG_AUX_DIR([build-aux])
|
||||||
|
|
|
||||||
|
|
@ -371,21 +371,29 @@ global:
|
||||||
ostree_repo_prune_from_reachable;
|
ostree_repo_prune_from_reachable;
|
||||||
} LIBOSTREE_2016.14;
|
} LIBOSTREE_2016.14;
|
||||||
|
|
||||||
/* NOTE NOTE NOTE
|
|
||||||
* Versions above here are released. Only add symbols below this line.
|
|
||||||
* NOTE NOTE NOTE
|
|
||||||
*/
|
|
||||||
|
|
||||||
LIBOSTREE_2017.2 {
|
LIBOSTREE_2017.2 {
|
||||||
global:
|
global:
|
||||||
ostree_repo_reload_config;
|
ostree_repo_reload_config;
|
||||||
} LIBOSTREE_2017.1;
|
} LIBOSTREE_2017.1;
|
||||||
|
|
||||||
/* Stub section for the stable release *after* this development one; don't
|
/* NOTE NOTE NOTE
|
||||||
* edit this other than to update the last number. This is just a copy/paste
|
* Versions above here are released. Only add symbols below this line.
|
||||||
* source.
|
* NOTE NOTE NOTE
|
||||||
LIBOSTREE_2016.XX {
|
*/
|
||||||
|
|
||||||
|
/* Uncomment this when adding the first new symbol for 2
|
||||||
|
LIBOSTREE_2017.XX {
|
||||||
global:
|
global:
|
||||||
someostree_symbol_deleteme;
|
someostree_symbol_deleteme;
|
||||||
} LIBOSTREE_2016.14;
|
} LIBOSTREE_2017.2;
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* Stub section for the stable release *after* this development one; don't
|
||||||
|
* edit this other than to update the last number. This is just a copy/paste
|
||||||
|
* source. Replace $LASTSTABLE with the last stable version, and $NEWVERSION
|
||||||
|
* with whatever the next version with new symbols will be.
|
||||||
|
LIBOSTREE_2017.$NEWVERSION {
|
||||||
|
global:
|
||||||
|
someostree_symbol_deleteme;
|
||||||
|
} LIBOSTREE_2017.$LASTSTABLE;
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue