From 7753791d8d4830104815c941ca670015651efa22 Mon Sep 17 00:00:00 2001 From: "Kevin C. Wells" Date: Thu, 22 Mar 2018 18:05:34 +0000 Subject: [PATCH] Release v4.2.0 This release contains four major additions: 1) Support for package-level bundles. A new local and upstream package list has been introduced, which mixer parses to automatically generate single-package bundles. 2) The bundle building algorithm has been significantly optimized. This step now runs approximately three times faster than the previous version. 3) New TOML configuration support. Mixer now has an optional '--new-config' flag that adds support for TOML-based configuration. A new 'mixer config' command has been added to validate existing builder.conf files, as well as convert legacy (INI) files into the new TOML format. 4) Update to how mixer generates the DNF conf file used during bundle building. This removes the dependency on m4. Signed-off-by: Kevin C. Wells --- builder/builder.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/builder.go b/builder/builder.go index db2236cd1..6d0144e89 100644 --- a/builder/builder.go +++ b/builder/builder.go @@ -41,7 +41,7 @@ import ( ) // Version of Mixer. Also used by the Makefile for releases. -const Version = "4.1.2" +const Version = "4.2.0" // UseNewSwupdServer controls whether to use the new implementation of // swupd-server (package swupd) when possible. This is an experimental feature.