Skip to content

Commit

Permalink
Update versions for release of NUT v2.8.2
Browse files Browse the repository at this point in the history
Signed-off-by: Jim Klimov <[email protected]>
  • Loading branch information
jimklimov committed Apr 1, 2024
1 parent 4216570 commit 20a7a3b
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/PyNUTClient.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
{ TAG_NAME="$(git describe --tags --match 'v[0-9]*.[0-9]*.[0-9]' --exclude '*-signed' --exclude '*rc*' --exclude '*alpha*' --exclude '*beta*')" \
|| TAG_NAME="$(git describe --tags --exclude '*rc*' --exclude '*alpha*' --exclude '*beta*' --exclude '*Windows*' --exclude '*IPM*')" ; } \
&& test -n "${TAG_NAME}" \
|| TAG_NAME="2.8.1-`TZ=UTC date +%s`" ;
|| TAG_NAME="2.8.2-`TZ=UTC date +%s`" ;
fi >&2 ;
TAG_NAME="$(echo "$TAG_NAME" | sed -e 's/^v\([0-9]\)/\1/' -e 's,^.*/,,' -e 's/^v//' -e 's/-g.*$//' -e 's/-/./g')" ;
echo "TAG_NAME=$TAG_NAME" >> $GITHUB_OUTPUT
Expand Down
4 changes: 2 additions & 2 deletions NEWS.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ ChangeLog file (generated for release archives), or to the Git version
control history for "live" codebase.


PLANNED: Release notes for NUT 2.8.2 - what's new since 2.8.1
-------------------------------------------------------------
Release notes for NUT 2.8.2 - what's new since 2.8.1
----------------------------------------------------

https://github.com/networkupstools/nut/milestone/10

Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# https://www.appveyor.com/docs/build-configuration/
# https://www.appveyor.com/docs/windows-images-software/

version: 2.8.1.{build}-{branch}
version: 2.8.2.{build}-{branch}

# base image
image: Visual Studio 2022
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ dnl +------------------------------------------------------------------+
dnl NUT version number is defined here, with a Git suffixed macro like
dnl NUT_VERSION_MACRO "2.7.4-2838-gdfc3ac08"
dnl in include/nut_version.h (generated by make)
AC_INIT([nut],[2.8.1.1],[https://github.com/networkupstools/nut/issues])
AC_INIT([nut],[2.8.2.1],[https://github.com/networkupstools/nut/issues])
dnl See docs/maintainer-guide.txt about releases - updating the version
dnl above is a small part of the consistent ritual!

Expand Down
11 changes: 11 additions & 0 deletions docs/docinfo.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,17 @@
with a focus on those changes which impacted documentation.
-->
<!-- AUTOINSERT LOCATION -->
<revision>
<revnumber>2.8.2</revnumber>
<date>2024-04-01</date>
<authorinitials>JK</authorinitials>
<revremark>
Some changes to docs and recipes, libnutscan API and functionality.
Added nutconf (library and tool). Fixed some regressions and added
improvements for certain new device series.
</revremark>
</revision>

<revision>
<revnumber>2.8.1</revnumber>
<date>2023-10-31</date>
Expand Down
2 changes: 1 addition & 1 deletion scripts/Windows/build-mingw-nut.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ DLLLDD_SOURCED=true . "${SCRIPTDIR}/dllldd.sh"

# This should match the tarball and directory name,
# if a stable version is used:
[ -n "$VER_OPT" ] || VER_OPT=2.8.1
[ -n "$VER_OPT" ] || VER_OPT=2.8.2
DEBUG=true

# default to 32bits build
Expand Down

0 comments on commit 20a7a3b

Please sign in to comment.