Release 2019.2
Also add `ostree_repo_get_bootloader` to the public API, which was missed when it was initially merged. Closes: #1844 Approved by: rfairley
This commit is contained in:
parent
304abee9eb
commit
80435e12a7
|
|
@ -293,6 +293,7 @@ ostree_repo_is_system
|
||||||
ostree_repo_is_writable
|
ostree_repo_is_writable
|
||||||
ostree_repo_create_at
|
ostree_repo_create_at
|
||||||
ostree_repo_create
|
ostree_repo_create
|
||||||
|
ostree_repo_get_bootloader
|
||||||
ostree_repo_get_path
|
ostree_repo_get_path
|
||||||
ostree_repo_get_mode
|
ostree_repo_get_mode
|
||||||
ostree_repo_get_min_free_space_bytes
|
ostree_repo_get_min_free_space_bytes
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ m4_define([year_version], [2019])
|
||||||
m4_define([release_version], [2])
|
m4_define([release_version], [2])
|
||||||
m4_define([package_version], [year_version.release_version])
|
m4_define([package_version], [year_version.release_version])
|
||||||
AC_INIT([libostree], [package_version], [walters@verbum.org])
|
AC_INIT([libostree], [package_version], [walters@verbum.org])
|
||||||
is_release_build=no
|
is_release_build=yes
|
||||||
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])
|
||||||
|
|
|
||||||
|
|
@ -18,15 +18,15 @@
|
||||||
***/
|
***/
|
||||||
|
|
||||||
/* Add new symbols here. Release commits should copy this section into -released.sym. */
|
/* Add new symbols here. Release commits should copy this section into -released.sym. */
|
||||||
LIBOSTREE_2018.10 {
|
LIBOSTREE_2019.3 {
|
||||||
} LIBOSTREE_2018.9;
|
} LIBOSTREE_2018.9;
|
||||||
|
|
||||||
/* Stub section for the stable release *after* this development one; don't
|
/* 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
|
* edit this other than to update the year. This is just a copy/paste
|
||||||
* source. Replace $LASTSTABLE with the last stable version, and $NEWVERSION
|
* source. Replace $LASTSTABLE with the last stable version, and $NEWVERSION
|
||||||
* with whatever the next version with new symbols will be.
|
* with whatever the next version with new symbols will be.
|
||||||
LIBOSTREE_2018.$NEWVERSION {
|
LIBOSTREE_2019.$NEWVERSION {
|
||||||
global:
|
global:
|
||||||
someostree_symbol_deleteme;
|
someostree_symbol_deleteme;
|
||||||
} LIBOSTREE_2018.$LASTSTABLE;
|
} LIBOSTREE_2019.$LASTSTABLE;
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -542,6 +542,13 @@ LIBOSTREE_2018.9 {
|
||||||
ostree_repo_get_default_repo_finders;
|
ostree_repo_get_default_repo_finders;
|
||||||
} LIBOSTREE_2018.7;
|
} LIBOSTREE_2018.7;
|
||||||
|
|
||||||
|
/* No new symbols in 2019.1 */
|
||||||
|
|
||||||
|
LIBOSTREE_2019.2 {
|
||||||
|
ostree_repo_get_bootloader;
|
||||||
|
} LIBOSTREE_2018.9;
|
||||||
|
|
||||||
|
|
||||||
/* NOTE: Only add more content here in release commits! See the
|
/* NOTE: Only add more content here in release commits! See the
|
||||||
* comments at the top of this file.
|
* comments at the top of this file.
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -54,7 +54,7 @@ echo 'ok documented symbols'
|
||||||
|
|
||||||
# ONLY update this checksum in release commits!
|
# ONLY update this checksum in release commits!
|
||||||
cat > released-sha256.txt <<EOF
|
cat > released-sha256.txt <<EOF
|
||||||
ae2946567160d4a47c8a7d000b87306895ee72cdd339e157d21c839e4b2c003a ${released_syms}
|
26f500134a55d678dd8ce6ba971c9e05cd4848b50ab895abc32cde1cffb5ad28 ${released_syms}
|
||||||
EOF
|
EOF
|
||||||
sha256sum -c released-sha256.txt
|
sha256sum -c released-sha256.txt
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue