Skip to content

Commit 1190c78

Browse files
committed
Update versions for release of NUT v2.8.5
Signed-off-by: Jim Klimov <jimklimov+nut@gmail.com>
1 parent 06d0775 commit 1190c78

File tree

7 files changed

+15
-9
lines changed

7 files changed

+15
-9
lines changed

.github/workflows/08-PyNUTClient.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
{ TAG_NAME="$(git describe --tags --match 'v[0-9]*.[0-9]*.[0-9]' --exclude '*-signed' --exclude '*rc*' --exclude '*alpha*' --exclude '*beta*')" \
5050
|| TAG_NAME="$(git describe --tags --exclude '*rc*' --exclude '*alpha*' --exclude '*beta*' --exclude '*Windows*' --exclude '*IPM*')" ; } \
5151
&& test -n "${TAG_NAME}" \
52-
|| TAG_NAME="2.8.4-`TZ=UTC date +%s`" ;
52+
|| TAG_NAME="2.8.5-`TZ=UTC date +%s`" ;
5353
fi >&2 ;
5454
TAG_NAME="$(echo "$TAG_NAME" | sed -e 's/^v\([0-9]\)/\1/' -e 's,^.*/,,' -e 's/^v//' -e 's/-g.*$//' -e 's/-/./g')" ;
5555
echo "TAG_NAME=$TAG_NAME" >> $GITHUB_OUTPUT

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# https://www.appveyor.com/docs/build-configuration/
77
# https://www.appveyor.com/docs/windows-images-software/
88

9-
version: 2.8.4.{build}-{branch}
9+
version: 2.8.5.{build}-{branch}
1010

1111
# base image
1212
image: Visual Studio 2022

scripts/Windows/build-mingw-nut.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ DLLLDD_SOURCED=true . "${SCRIPTDIR}/dllldd.sh"
2828

2929
# This should match the tarball and directory name,
3030
# if a stable version is used:
31-
[ -n "$VER_OPT" ] || VER_OPT=2.8.4
31+
[ -n "$VER_OPT" ] || VER_OPT=2.8.5
3232
DEBUG=true
3333

3434
# default to 32bits build

scripts/obs/debian.changelog

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1+
nut (2.8.5-1) UNRELEASED; urgency=high
2+
3+
* Revising recipes for OBS builds
4+
5+
-- Jim Klimov <jimklimov+nut@gmail.com> Thu, 29 Jan 2026 12:34:56 +0200
6+
17
nut (2.8.4-1) UNRELEASED; urgency=high
28

39
* Revising recipes for OBS builds
410

5-
-- Jim Klimov <EvgenyKlimov@Eaton.com> Sun, 5 Oct 2025 14:00:00 +0200
11+
-- Jim Klimov <jimklimov+nut@gmail.com> Sun, 5 Oct 2025 14:00:00 +0200
612

713
nut (2.7.4-14) UNRELEASED; urgency=high
814

scripts/obs/nut.dsc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Format: 1.0
22
Source: nut
33
Binary: nut, nut-server, nut-client, nut-cgi, nut-snmp, nut-ipmi, nut-modbus, nut-linux-i2c, nut-xml, nut-powerman-pdu, nut-gpio, nut-upower, nut-doc, libupsclient4, libupsclient-dev, libnutclient1, libnutclient-dev, python-nut, nut-monitor, libups-nut-perl
44
Architecture: any all
5-
Version: 2.8.4-1
5+
Version: 2.8.5-1
66
Maintainer: Arnaud Quette <aquette@debian.org>
77
Uploaders: Laurent Bigonville <bigon@debian.org>
88
Homepage: http://www.networkupstools.org/

scripts/obs/nut.spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
55
# Copyright (c) 2016-2018 Eaton EEIC.
6-
# Copyright (c) 2025 by Jim Klimov <jimklimov+nut@gmail.com>
6+
# Copyright (c) 2025-2026 by Jim Klimov <jimklimov+nut@gmail.com>
77
#
88
# All modifications and additions to the file contributed by third parties
99
# remain the property of their copyright owners, unless otherwise agreed
@@ -118,7 +118,7 @@
118118

119119
Name: nut
120120
# NOTE: OBS should rewrite this:
121-
Version: 2.8.4
121+
Version: 2.8.5
122122
Release: 1
123123
Summary: Network UPS Tools Core (Uninterruptible Power Supply Monitoring)
124124
License: GPL-2.0+

tools/gitlog2version.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
# Copyright (C) 2016-2025 by Jim Klimov <jimklimov+nut@gmail.com>
3+
# Copyright (C) 2016-2026 by Jim Klimov <jimklimov+nut@gmail.com>
44
#
55
# This program is free software; you can redistribute it and/or modify
66
# it under the terms of the GNU General Public License as published by
@@ -157,7 +157,7 @@ if [ -z "${NUT_VERSION_DEFAULT-}" -a -s "${abs_top_srcdir}/VERSION_DEFAULT" ] ;
157157
fi
158158

159159
# Fallback default, to be updated only during release cycle
160-
[ -n "${NUT_VERSION_DEFAULT-}" ] || NUT_VERSION_DEFAULT='2.8.4.1'
160+
[ -n "${NUT_VERSION_DEFAULT-}" ] || NUT_VERSION_DEFAULT='2.8.5'
161161

162162
# Default website paths, extended for historic sub-sites for a release
163163
[ -n "${NUT_WEBSITE-}" ] || NUT_WEBSITE="https://www.networkupstools.org/"

0 commit comments

Comments
 (0)