From c4bd85db104389720f3f64f4e0f950593cb8e3f3 Mon Sep 17 00:00:00 2001 From: Guillaume Bougard Date: Wed, 15 Nov 2023 18:08:37 +0100 Subject: [PATCH] feat: GLPI Agent 1.6 release --- Makefile.PL | 2 +- contrib/unix/installer/InstallerVersion.pm | 2 +- contrib/windows/glpi-agent-deployment.vbs | 4 ++-- debian/changelog | 6 ++++++ lib/GLPI/Agent/Version.pm | 4 ++-- 5 files changed, 12 insertions(+), 6 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index e8ad90148..a7fd754ff 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -14,7 +14,7 @@ include 'Module::AutoInstall'; abstract 'GLPI unified Agent for UNIX, Linux, Windows and MacOSX'; license 'gpl'; repository 'https://github.com/glpi-project/glpi-agent'; -version '1.6-dev'; +version '1.6'; perl_version '5.008'; authors 'Teclib Editions'; diff --git a/contrib/unix/installer/InstallerVersion.pm b/contrib/unix/installer/InstallerVersion.pm index 549c838b8..370041e91 100644 --- a/contrib/unix/installer/InstallerVersion.pm +++ b/contrib/unix/installer/InstallerVersion.pm @@ -1,7 +1,7 @@ package InstallerVersion; -use constant VERSION => "1.6-dev"; +use constant VERSION => "1.7-dev"; use constant DISTRO => "linux"; 1; diff --git a/contrib/windows/glpi-agent-deployment.vbs b/contrib/windows/glpi-agent-deployment.vbs index a00c4c58a..0eef32c20 100644 --- a/contrib/windows/glpi-agent-deployment.vbs +++ b/contrib/windows/glpi-agent-deployment.vbs @@ -64,12 +64,12 @@ Dim Setup, SetupArchitecture, SetupLocation, SetupNightlyLocation, SetupOptions, ' SetupVersion ' Setup version with the pattern ..[-] ' -SetupVersion = "1.5" +SetupVersion = "1.6" ' When using a nightly built version, uncomment the following SetupVersion definition line ' replacing gitABCDEFGH with the most recent git revision found on the nightly builds site ' In that case, SetupNightlyLocation will be selected as location in place of SetupLocation -'SetupVersion = "1.6-gitABCDEFGH" +'SetupVersion = "1.7-gitABCDEFGH" ' SetupLocation ' Depending on your needs or your environment, you can use either a HTTP or diff --git a/debian/changelog b/debian/changelog index 73250a0a9..d91436e0d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +glpi-agent (1:1.6-1) unstable; urgency=medium + + * New upstream release 1.6 + + -- Guillaume Bougard Wed, 15 Nov 2023 17:30:36 +0100 + glpi-agent (1:1.5-1) unstable; urgency=medium * New upstream release 1.5 diff --git a/lib/GLPI/Agent/Version.pm b/lib/GLPI/Agent/Version.pm index f078cb32b..947a9264b 100644 --- a/lib/GLPI/Agent/Version.pm +++ b/lib/GLPI/Agent/Version.pm @@ -3,7 +3,7 @@ package GLPI::Agent::Version; use strict; use warnings; -our $VERSION = "1.6-dev"; +our $VERSION = "1.6"; our $PROVIDER = "GLPI"; our $COMMENTS = []; @@ -31,5 +31,5 @@ agent issue is reported. One very useful information should be first defined like in that example: our $COMMENTS = [ - "Based on GLPI Agent 1.6-dev" + "Based on GLPI Agent 1.6" ];