summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.am2
-rw-r--r--NEWS23
-rw-r--r--configure.ac2
-rw-r--r--meson.build4
4 files changed, 27 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am
index c95a8f3..c797fb0 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -44,7 +44,7 @@ AM_LDFLAGS = \
# If any interfaces have been removed or changed since the last release,
# then set age to 0.
LIBDT_CURRENT=6
-LIBDT_REVISION=0
+LIBDT_REVISION=1
LIBDT_AGE=0
pkginclude_HEADERS = \
diff --git a/NEWS b/NEWS
index 9902fc0..fa7afca 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,29 @@
# SPDX-License-Identifier: GPL-2.0-only
# Copyright 2013-2023 The DT-Utils Authors <oss-tools@pengutronix.de>
+dt-utils 2023.11.0
+==================
+
+A small bugfix release, mainly consisting of the following commit:
+
+* commit b67e96895f52 "libdt: prefer first found disk when looking for block
+ devices"
+ When using barebox-state on boards with a barbeox-state partition on an eMMC
+ device, it could happen that barebox-state tried to find a GPT partition on
+ /dev/mmcblkXbootN instead of /dev/mmcblkX, obviously failing to find a
+ matching partition there, and quitting without any further action. This commit
+ restores the old behaviour of using the first found MMC device (/dev/mmcblkX)
+ instead of the last one. Although this is not completely future-proof, it has
+ worked for years and serves a good stop-gap solution for now.
+
+A few more housekeeping and maintenance commits:
+
+* commit feca1c1ffdaa "README: provide git format.subjectPrefix line to copy"
+* commit 1cd62596dbd7 "meson: align libdt-utils version with autotools'"
+
+This release includes contributions by Ahmad Fatoum, Enrico Jörns, Leonard
+Göhrs, and Roland Hieber. Thank you to all contributors!
+
dt-utils 2023.08.0
==================
diff --git a/configure.ac b/configure.ac
index c911856..b0e6129 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3,7 +3,7 @@
AC_PREREQ(2.60)
AC_INIT([dt-utils],
- [2023.08.0],
+ [2023.11.0],
[oss-tools@pengutronix.de],
[dt-utils],
[https://git.pengutronix.de/cgit/tools/dt-utils])
diff --git a/meson.build b/meson.build
index 6489e4c..bf60171 100644
--- a/meson.build
+++ b/meson.build
@@ -5,7 +5,7 @@
project(
'dt-utils',
'c',
- version : '2023.08.0',
+ version : '2023.11.0',
meson_version : '>=0.51',
default_options: [
'c_std=gnu11',
@@ -131,7 +131,7 @@ meson.add_dist_script('version-gen', meson.project_version())
# If any interfaces have been removed or changed since the last release,
# then set age to 0.
lt_current = 6
-lt_revision = 0
+lt_revision = 1
lt_age = 0
mapfile = 'src/libdt-utils.sym'