From: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 19 May 2026 13:03:02 +0000 (+0000) Subject: release v1.10.1 X-Git-Tag: v1.10.1^0 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=dba8d6fee558ecbe8f36b07d4dc948429f0ff82a;p=thirdparty%2Frrdtool-1.x.git release v1.10.1 --- diff --git a/CHANGES b/CHANGES index 40b8265c..8d940841 100644 --- a/CHANGES +++ b/CHANGES @@ -3,6 +3,14 @@ RRDtool - master ... ==================== Bugfixes -------- + +Features +-------- + +RRDtool 1.10.1 - 2026-05-19 +=========================== +Bugfixes +-------- * Modernize obsolete autoconf macros so configure regenerates cleanly with current autotools @oetiker Features diff --git a/VERSION b/VERSION index 81c871de..4dae2985 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.10.0 +1.10.1 diff --git a/bindings/perl-piped/RRDp.pm b/bindings/perl-piped/RRDp.pm index 57759aea..3ee9f8b2 100644 --- a/bindings/perl-piped/RRDp.pm +++ b/bindings/perl-piped/RRDp.pm @@ -124,7 +124,7 @@ sub cmd (@); sub end (); sub read (); -$VERSION=1.10000; +$VERSION=1.10001; sub start ($){ croak "rrdtool is already running" diff --git a/bindings/perl-shared/RRDs.pm b/bindings/perl-shared/RRDs.pm index 4d05271b..5487496c 100644 --- a/bindings/perl-shared/RRDs.pm +++ b/bindings/perl-shared/RRDs.pm @@ -7,7 +7,7 @@ use vars qw(@ISA $VERSION); require DynaLoader; -$VERSION=1.10000; +$VERSION=1.10001; bootstrap RRDs $VERSION; diff --git a/doc/rrdbuild.pod b/doc/rrdbuild.pod index 96a7801d..0b65046b 100644 --- a/doc/rrdbuild.pod +++ b/doc/rrdbuild.pod @@ -41,7 +41,7 @@ Where you want to install the software. Once you have decided. Save the two locations into environment variables. BUILD_DIR=/tmp/rrdbuild - INSTALL_DIR=/opt/rrdtool-1.10.0 + INSTALL_DIR=/opt/rrdtool-1.10.1 If your F is mounted with the option noexec (RHEL seems to do that) you have to choose @@ -55,9 +55,9 @@ Now make sure the BUILD_DIR exists and go there: Lets first assume you already have all the necessary libraries pre-installed. - wget https://github.com/oetiker/rrdtool-1.x/releases/download/v1.10.0/rrdtool-1.10.0.tar.gz - gunzip -c rrdtool-1.10.0.tar.gz | tar xf - - cd rrdtool-1.10.0 + wget https://github.com/oetiker/rrdtool-1.x/releases/download/v1.10.1/rrdtool-1.10.1.tar.gz + gunzip -c rrdtool-1.10.1.tar.gz | tar xf - + cd rrdtool-1.10.1 ./configure --prefix=$INSTALL_DIR && make && make install Ok, this was very optimistic. This try will probably have ended with @@ -347,7 +347,7 @@ because it seems that a fair number of people have ill configured python and tcl setups that would prevent RRDtool from building if they are included in their current state. - cd $BUILD_DIR/rrdtool-1.10.0 + cd $BUILD_DIR/rrdtool-1.10.1 ./configure --prefix=$INSTALL_DIR --disable-tcl --disable-python $MAKE clean $MAKE diff --git a/rrdtool.spec b/rrdtool.spec index dbb254e7..77afb50f 100644 --- a/rrdtool.spec +++ b/rrdtool.spec @@ -11,7 +11,7 @@ Summary: Round Robin Database Tool to store and display time-series data Name: rrdtool -Version: 1.10.0 +Version: 1.10.1 Release: 1%{?dist} License: GPLv2+ with exceptions Group: Applications/Databases diff --git a/src/pngsize.c b/src/pngsize.c index 3b8caf74..ae2600fd 100644 --- a/src/pngsize.c +++ b/src/pngsize.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 ***************************************************************************** * pngsize.c determine the size of a PNG image *****************************************************************************/ diff --git a/src/rrd.h b/src/rrd.h index c1a59da6..966f45a0 100644 --- a/src/rrd.h +++ b/src/rrd.h @@ -2,7 +2,7 @@ #define RRDLIB_H_4FD7D37D56A448C392AF46508C56D3CC /***************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 ***************************************************************************** * rrdlib.h Public header file for librrd ***************************************************************************** @@ -459,9 +459,9 @@ extern "C" { /* * The following functions are _internal_ functions needed to read the raw RRD * files. Since they are _internal_ they may change with the file format and - * will be replaced with a more general interface in RRDtool 1.10.0 Don't use + * will be replaced with a more general interface in RRDtool 1.10.1 Don't use * these functions unless you have good reasons to do so. If you do use these - * functions you will have to adapt your code for RRDtool 1.10.0 + * functions you will have to adapt your code for RRDtool 1.10.1 * * To enable the deprecated functions define `RRD_EXPORT_DEPRECATED' before * including . You have been warned! If you come back to the diff --git a/src/rrd_cgi.c b/src/rrd_cgi.c index 528878c6..f3ffc167 100644 --- a/src/rrd_cgi.c +++ b/src/rrd_cgi.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 ***************************************************************************** * rrd_cgi.c RRD Web Page Generator *****************************************************************************/ diff --git a/src/rrd_create.c b/src/rrd_create.c index 0f385e0d..86416ee2 100644 --- a/src/rrd_create.c +++ b/src/rrd_create.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 ***************************************************************************** * rrd_create.c creates new rrds *****************************************************************************/ diff --git a/src/rrd_create.h b/src/rrd_create.h index f6ce1ed3..fe9725dc 100644 --- a/src/rrd_create.h +++ b/src/rrd_create.h @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 **************************************************************************** * rrd_create.h ****************************************************************************/ diff --git a/src/rrd_datalang.c b/src/rrd_datalang.c index 89b9de29..b9d04e3c 100644 --- a/src/rrd_datalang.c +++ b/src/rrd_datalang.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 ***************************************************************************** * rrd_datalang A system for passing named and typed parameters between * the different parts of rrdtool diff --git a/src/rrd_diff.c b/src/rrd_diff.c index 1716eb99..dcc31630 100644 --- a/src/rrd_diff.c +++ b/src/rrd_diff.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 * This code is stolen from rateup (mrtg-2.x) by Dave Rand ***************************************************************************** * diff calculate the difference between two very long integers available as diff --git a/src/rrd_dump.c b/src/rrd_dump.c index a9a0ebec..3f683c61 100644 --- a/src/rrd_dump.c +++ b/src/rrd_dump.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 ***************************************************************************** * rrd_dump Display a RRD ***************************************************************************** diff --git a/src/rrd_error.c b/src/rrd_error.c index 3658055c..50b63d61 100644 --- a/src/rrd_error.c +++ b/src/rrd_error.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 ***************************************************************************** * rrd_error.c Common Header File ***************************************************************************** diff --git a/src/rrd_fetch.c b/src/rrd_fetch.c index 578930ba..5b5e27a1 100644 --- a/src/rrd_fetch.c +++ b/src/rrd_fetch.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 ***************************************************************************** * rrd_fetch.c read date from an rrd to use for further processing ***************************************************************************** diff --git a/src/rrd_first.c b/src/rrd_first.c index ef6c0cd0..3176879c 100644 --- a/src/rrd_first.c +++ b/src/rrd_first.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 ***************************************************************************** * rrd_first Return ***************************************************************************** diff --git a/src/rrd_format.c b/src/rrd_format.c index f5df7b56..b68b9809 100644 --- a/src/rrd_format.c +++ b/src/rrd_format.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 ***************************************************************************** * rrd_format.c RRD Database Format helper functions *****************************************************************************/ diff --git a/src/rrd_format.h b/src/rrd_format.h index 07395a6c..ffbb1988 100644 --- a/src/rrd_format.h +++ b/src/rrd_format.h @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 ***************************************************************************** * rrd_format.h RRD Database Format header *****************************************************************************/ diff --git a/src/rrd_gfx.c b/src/rrd_gfx.c index 41419905..60933257 100644 --- a/src/rrd_gfx.c +++ b/src/rrd_gfx.c @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 **************************************************************************** * rrd_gfx.c graphics wrapper for rrdtool **************************************************************************/ diff --git a/src/rrd_graph.c b/src/rrd_graph.c index cd3b7f2b..56768986 100644 --- a/src/rrd_graph.c +++ b/src/rrd_graph.c @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 **************************************************************************** * rrd__graph.c produce graphs from data in rrdfiles ****************************************************************************/ diff --git a/src/rrd_graph_helper.c b/src/rrd_graph_helper.c index a520920a..c447d288 100644 --- a/src/rrd_graph_helper.c +++ b/src/rrd_graph_helper.c @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 **************************************************************************** * rrd_graph_helper.c commandline parser functions * this code initially written by Alex van den Bogaerdt diff --git a/src/rrd_hw.c b/src/rrd_hw.c index a0b6f603..0b26d16b 100644 --- a/src/rrd_hw.c +++ b/src/rrd_hw.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 ***************************************************************************** * rrd_hw.c : Support for Holt-Winters Smoothing/ Aberrant Behavior Detection ***************************************************************************** diff --git a/src/rrd_hw.h b/src/rrd_hw.h index b2e21f9e..4bab7ab4 100644 --- a/src/rrd_hw.h +++ b/src/rrd_hw.h @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 ***************************************************************************** * rrd_hw.h : Support for Holt-Winters Smoothing/ Aberrant Behavior Detection *****************************************************************************/ diff --git a/src/rrd_i18n.h b/src/rrd_i18n.h index 300329e5..1a8dcbd1 100644 --- a/src/rrd_i18n.h +++ b/src/rrd_i18n.h @@ -2,7 +2,7 @@ #define RRD_I18N_H_E9D8F44A32654DF9B92B1862D5371142 /***************************************************************************** - * RRDtool 1.10.0 Copyright by Takao Fujiwara, 2008 + * RRDtool 1.10.1 Copyright by Takao Fujiwara, 2008 ***************************************************************************** * rrd_i18n.h Common Header File *****************************************************************************/ diff --git a/src/rrd_info.c b/src/rrd_info.c index 9e108a15..a4970aef 100644 --- a/src/rrd_info.c +++ b/src/rrd_info.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 ***************************************************************************** * rrd_info Get Information about the configuration of an RRD *****************************************************************************/ diff --git a/src/rrd_is_thread_safe.h b/src/rrd_is_thread_safe.h index 8593cf59..6fbc4875 100644 --- a/src/rrd_is_thread_safe.h +++ b/src/rrd_is_thread_safe.h @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 * This file: Copyright 2003 Peter Stamfest * & Tobias Oetiker * Distributed under the GPL diff --git a/src/rrd_last.c b/src/rrd_last.c index 706ac7ba..7778b8b7 100644 --- a/src/rrd_last.c +++ b/src/rrd_last.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 ***************************************************************************** * rrd_last.c ***************************************************************************** diff --git a/src/rrd_lastupdate.c b/src/rrd_lastupdate.c index c90e830c..3e3a83e2 100644 --- a/src/rrd_lastupdate.c +++ b/src/rrd_lastupdate.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 * Copyright by Florian Forster, 2008 ***************************************************************************** * rrd_lastupdate Get the last datum entered for each DS diff --git a/src/rrd_modify.c b/src/rrd_modify.c index 6f07d72d..eb90d1fe 100644 --- a/src/rrd_modify.c +++ b/src/rrd_modify.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 ***************************************************************************** * rrd_modify Structurally modify an RRD file * (c) 2014 by Peter Stamfest and Tobi Oetiker diff --git a/src/rrd_modify.h b/src/rrd_modify.h index fb267625..fce5600b 100644 --- a/src/rrd_modify.h +++ b/src/rrd_modify.h @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 **************************************************************************** * rrd_create.h ****************************************************************************/ diff --git a/src/rrd_open.c b/src/rrd_open.c index cad470a2..9bff1927 100644 --- a/src/rrd_open.c +++ b/src/rrd_open.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 ***************************************************************************** * rrd_open.c Open an RRD File ***************************************************************************** diff --git a/src/rrd_resize.c b/src/rrd_resize.c index e1404724..2fd25315 100644 --- a/src/rrd_resize.c +++ b/src/rrd_resize.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 ***************************************************************************** * rrd_resize.c Alters size of an RRA ***************************************************************************** diff --git a/src/rrd_restore.c b/src/rrd_restore.c index f40e9249..c6bc5d43 100644 --- a/src/rrd_restore.c +++ b/src/rrd_restore.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 ***************************************************************************** * rrd_restore.c Contains logic to parse XML input and create an RRD file * This file: diff --git a/src/rrd_restore.h b/src/rrd_restore.h index 6a712772..76a880bb 100644 --- a/src/rrd_restore.h +++ b/src/rrd_restore.h @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 **************************************************************************** * rrd_restore.h ****************************************************************************/ diff --git a/src/rrd_rpncalc.c b/src/rrd_rpncalc.c index a6fb88ec..dbf43726 100644 --- a/src/rrd_rpncalc.c +++ b/src/rrd_rpncalc.c @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 **************************************************************************** * rrd_rpncalc.c RPN calculator functions ****************************************************************************/ diff --git a/src/rrd_rpncalc.h b/src/rrd_rpncalc.h index b57cfebf..4f9a8c4d 100644 --- a/src/rrd_rpncalc.h +++ b/src/rrd_rpncalc.h @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 **************************************************************************** * rrd_rpncalc.h RPN calculator functions ****************************************************************************/ diff --git a/src/rrd_snprintf.c b/src/rrd_snprintf.c index adbe1a38..e32d1208 100644 --- a/src/rrd_snprintf.c +++ b/src/rrd_snprintf.c @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 **************************************************************************** * rrd_snprintf ****************************************************************************/ diff --git a/src/rrd_thread_safe.c b/src/rrd_thread_safe.c index d94272f3..8cc6fdfb 100644 --- a/src/rrd_thread_safe.c +++ b/src/rrd_thread_safe.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 * This file: Copyright 2003 Peter Stamfest * & Tobias Oetiker * Distributed under the GPL diff --git a/src/rrd_thread_safe_nt.c b/src/rrd_thread_safe_nt.c index 662ab77b..5984a793 100644 --- a/src/rrd_thread_safe_nt.c +++ b/src/rrd_thread_safe_nt.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 * This file: Copyright 2003 Peter Stamfest * & Tobias Oetiker * Distributed under the GPL diff --git a/src/rrd_tool.c b/src/rrd_tool.c index a85885d0..9658fe44 100644 --- a/src/rrd_tool.c +++ b/src/rrd_tool.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 ***************************************************************************** * rrd_tool.c Startup wrapper *****************************************************************************/ diff --git a/src/rrd_tool.h b/src/rrd_tool.h index 1f210dea..8d258266 100644 --- a/src/rrd_tool.h +++ b/src/rrd_tool.h @@ -2,7 +2,7 @@ #define RRD_TOOL_H_3853987DDF7E4709A5B5849E5A6204F4 /***************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 ***************************************************************************** * rrd_tool.h Common Header File *****************************************************************************/ diff --git a/src/rrd_tune.c b/src/rrd_tune.c index 74aebe87..b4fef281 100644 --- a/src/rrd_tune.c +++ b/src/rrd_tune.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 ***************************************************************************** * change header parameters of an rrd ***************************************************************************** diff --git a/src/rrd_update.c b/src/rrd_update.c index 22a1f11f..d0d43926 100644 --- a/src/rrd_update.c +++ b/src/rrd_update.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 * Copyright by Florian Forster, 2008 ***************************************************************************** * rrd_update.c RRD Update Function diff --git a/src/rrd_update.h b/src/rrd_update.h index 547909d9..b1757472 100644 --- a/src/rrd_update.h +++ b/src/rrd_update.h @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 **************************************************************************** * rrd_restore.h ****************************************************************************/ diff --git a/src/rrd_version.c b/src/rrd_version.c index 13eb0ae4..d27811c6 100644 --- a/src/rrd_version.c +++ b/src/rrd_version.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 ***************************************************************************** * rrd_version Return ***************************************************************************** diff --git a/src/rrd_xport.c b/src/rrd_xport.c index 2c62621f..6722c5df 100644 --- a/src/rrd_xport.c +++ b/src/rrd_xport.c @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 **************************************************************************** * rrd_xport.c export RRD data ****************************************************************************/ diff --git a/src/rrd_xport.h b/src/rrd_xport.h index 9a9f7ec8..0c1d432e 100644 --- a/src/rrd_xport.h +++ b/src/rrd_xport.h @@ -2,7 +2,7 @@ #define RRD_XPORT_H_C5A7EBAF331140D38C241326B81F357D /**************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 **************************************************************************** * rrd_xport.h contains XML related constants ****************************************************************************/ diff --git a/src/rrdupdate.c b/src/rrdupdate.c index 7408d973..0cb57d5a 100644 --- a/src/rrdupdate.c +++ b/src/rrdupdate.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.10.0 Copyright by Tobi Oetiker, 1997-2026 + * RRDtool 1.10.1 Copyright by Tobi Oetiker, 1997-2026 ***************************************************************************** * rrdupdate.c Main program for the (standalone) rrdupdate utility ***************************************************************************** diff --git a/win32/rrd_config.h b/win32/rrd_config.h index e499d840..44301c53 100644 --- a/win32/rrd_config.h +++ b/win32/rrd_config.h @@ -9,9 +9,9 @@ /* Version numbers are updated by the rrdtool-release script. */ #define PACKAGE_MAJOR 1 #define PACKAGE_MINOR 10 -#define PACKAGE_REVISION 0 -#define PACKAGE_VERSION "1.10.0" -#define NUMVERS 1.10000 +#define PACKAGE_REVISION 1 +#define PACKAGE_VERSION "1.10.1" +#define NUMVERS 1.10001 #define RRD_DEFAULT_FONT "Courier"