diff --git a/NEWS.md b/NEWS.md index 1df738bd..8f2793fa 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,15 @@ +## CHANGES WITH 33: + + * `stages/org.osbuild.grub2`: add support for greenboot, i.e. + automatically rolling back bad updates, i.e. updates that do not + boot successfully. + + * `stages/org.osbuild.gzip`: new stage to compress files via gzip. + +Contributions from: Christian Kellner, Diaa Sami + +— Vöcklabruck, 2021-08-25 + ## CHANGES WITH 32: * `stages/org.osbuild.grub2`: allow the unified grub config scheme diff --git a/osbuild.spec b/osbuild.spec index 0c9af97f..1d0c4980 100644 --- a/osbuild.spec +++ b/osbuild.spec @@ -1,7 +1,7 @@ %global forgeurl https://github.com/osbuild/osbuild %global selinuxtype targeted -Version: 32 +Version: 33 %forgemeta diff --git a/setup.py b/setup.py index 1a76dc5b..df56f995 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ import setuptools setuptools.setup( name="osbuild", - version="32", + version="33", description="A build system for OS images", packages=["osbuild", "osbuild.formats", "osbuild.util"], license='Apache-2.0',