Skip to content

Commit

Permalink
Release 2019.2
Browse files Browse the repository at this point in the history
Also add `ostree_repo_get_bootloader` to the public API, which was
missed when it was initially merged.

Closes: #1844
Approved by: rfairley
  • Loading branch information
jlebon authored and rh-atomic-bot committed Apr 25, 2019
1 parent 304abee commit 80435e1
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
1 change: 1 addition & 0 deletions apidoc/ostree-sections.txt
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,7 @@ ostree_repo_is_system
ostree_repo_is_writable
ostree_repo_create_at
ostree_repo_create
ostree_repo_get_bootloader
ostree_repo_get_path
ostree_repo_get_mode
ostree_repo_get_min_free_space_bytes
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ m4_define([year_version], [2019])
m4_define([release_version], [2])
m4_define([package_version], [year_version.release_version])
AC_INIT([libostree], [package_version], [walters@verbum.org])
is_release_build=no
is_release_build=yes
AC_CONFIG_HEADER([config.h])
AC_CONFIG_MACRO_DIR([buildutil])
AC_CONFIG_AUX_DIR([build-aux])
Expand Down
8 changes: 4 additions & 4 deletions src/libostree/libostree-devel.sym
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@
***/

/* Add new symbols here. Release commits should copy this section into -released.sym. */
LIBOSTREE_2018.10 {
LIBOSTREE_2019.3 {
} LIBOSTREE_2018.9;

/* 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
* with whatever the next version with new symbols will be.
LIBOSTREE_2018.$NEWVERSION {
LIBOSTREE_2019.$NEWVERSION {
global:
someostree_symbol_deleteme;
} LIBOSTREE_2018.$LASTSTABLE;
} LIBOSTREE_2019.$LASTSTABLE;
*/
7 changes: 7 additions & 0 deletions src/libostree/libostree-released.sym
Original file line number Diff line number Diff line change
Expand Up @@ -542,6 +542,13 @@ LIBOSTREE_2018.9 {
ostree_repo_get_default_repo_finders;
} 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
* comments at the top of this file.
*/
2 changes: 1 addition & 1 deletion tests/test-symbols.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ echo 'ok documented symbols'

# ONLY update this checksum in release commits!
cat > released-sha256.txt <<EOF
ae2946567160d4a47c8a7d000b87306895ee72cdd339e157d21c839e4b2c003a ${released_syms}
26f500134a55d678dd8ce6ba971c9e05cd4848b50ab895abc32cde1cffb5ad28 ${released_syms}
EOF
sha256sum -c released-sha256.txt

Expand Down

0 comments on commit 80435e1

Please sign in to comment.