Release 2018.3
It's been over a month since 2018.2; we have a few features and various fixes, and the "stage" work pending which is pretty invasive. Time for a new release! Closes: #1506 Approved by: jlebon
This commit is contained in:
parent
9ca3f76cd2
commit
671b026fcc
|
|
@ -7,7 +7,7 @@ m4_define([year_version], [2018])
|
||||||
m4_define([release_version], [3])
|
m4_define([release_version], [3])
|
||||||
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,11 +18,8 @@
|
||||||
***/
|
***/
|
||||||
|
|
||||||
/* 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.3 {
|
LIBOSTREE_2018.4 {
|
||||||
ostree_deployment_origin_remove_transient_state;
|
} LIBOSTREE_2018.3;
|
||||||
ostree_sysroot_deployment_set_pinned;
|
|
||||||
ostree_deployment_is_pinned;
|
|
||||||
} LIBOSTREE_2018.2;
|
|
||||||
|
|
||||||
/* 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 last number. This is just a copy/paste
|
||||||
|
|
|
||||||
|
|
@ -458,6 +458,12 @@ LIBOSTREE_2018.2 {
|
||||||
ostree_commit_get_content_checksum;
|
ostree_commit_get_content_checksum;
|
||||||
} LIBOSTREE_2018.1;
|
} LIBOSTREE_2018.1;
|
||||||
|
|
||||||
|
LIBOSTREE_2018.3 {
|
||||||
|
ostree_deployment_origin_remove_transient_state;
|
||||||
|
ostree_sysroot_deployment_set_pinned;
|
||||||
|
ostree_deployment_is_pinned;
|
||||||
|
} LIBOSTREE_2018.2;
|
||||||
|
|
||||||
/* 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
|
||||||
6f8beb8ec59190c74368b7f2b1aca7a382c9e4b1763b724037932f73ba6b29cd ${released_syms}
|
d77bacdfe04f2a150e4d5e1637410e851c273b238468d820c0d2a168971900f3 ${released_syms}
|
||||||
EOF
|
EOF
|
||||||
sha256sum -c released-sha256.txt
|
sha256sum -c released-sha256.txt
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue