diff --git a/NEWS.md b/NEWS.md index 210b23a2..124b6dd7 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,16 @@ +## CHANGES WITH 37: + + * Port sources to the host service infrastructure + * `stages/org.osbuild.ostree.config`: add `bootloader` config option + * `stages/org.osbuild.sysctld`: new stage for setting kernel parameters via sysctl.d + * `stages/org.osbuild.pam.limits.conf`: new stage for configuring `pam_limits` module + +Contributions from: Achilleas Koutsou, Alexander Larsson, Christian Kellner, Diaa Sami, + Martin Sehnoutka, Pierre-Yves Chibon, Sanne Raymaekers, Simon Steinbeiss, + Tomas Hozza + +— Brno, 2021-09-22 + ## CHANGES WITH 36: * `stages/org.osbuild.selinux.config`: new stage for configuring SELinux on the system diff --git a/osbuild.spec b/osbuild.spec index 2f833ad5..d29a4376 100644 --- a/osbuild.spec +++ b/osbuild.spec @@ -1,7 +1,7 @@ %global forgeurl https://github.com/osbuild/osbuild %global selinuxtype targeted -Version: 36 +Version: 37 %forgemeta diff --git a/setup.py b/setup.py index 83e1e7d3..76ad4023 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ import setuptools setuptools.setup( name="osbuild", - version="36", + version="37", description="A build system for OS images", packages=["osbuild", "osbuild.formats", "osbuild.util"], license='Apache-2.0',