diff --git a/Changes b/Changes index a8ca65f14..35683a208 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ Revision history for GLPI agent -1.8 not yet released +1.8 Wed, 15 May 2024 core: * Parallel::ForkManager must not use more than 60 workers on MSWin32 due to a diff --git a/Makefile.PL b/Makefile.PL index 4b1c42f16..7023f24c9 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.8-dev'; +version '1.8'; perl_version '5.008'; authors 'Teclib Editions'; diff --git a/contrib/windows/glpi-agent-deployment.vbs b/contrib/windows/glpi-agent-deployment.vbs index 6b4604643..587619550 100644 --- a/contrib/windows/glpi-agent-deployment.vbs +++ b/contrib/windows/glpi-agent-deployment.vbs @@ -28,7 +28,7 @@ ' ------------------------------------------------------------------------ ' ' @package GLPI Agent -' @version 1.7.3 +' @version 1.8 ' @file contrib/windows/glpi-agent-deployment.vbs ' @author(s) Benjamin Accary ' Christophe Pujol @@ -65,12 +65,12 @@ Dim Setup, SetupArchitecture, SetupLocation, SetupNightlyLocation, SetupOptions, ' SetupVersion ' Setup version with the pattern ..[-] ' -SetupVersion = "1.7.3" +SetupVersion = "1.8" ' 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.8-gitABCDEFGH" +'SetupVersion = "1.9-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 4507b2242..cac0389ec 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +glpi-agent (1:1.8-1) unstable; urgency=medium + + * New upstream release 1.8 + + -- Guillaume Bougard Wed, 15 May 2024 11:30:39 +0200 + glpi-agent (1:1.7.3-1) unstable; urgency=medium * New upstream release 1.7.3 diff --git a/lib/GLPI/Agent/Version.pm b/lib/GLPI/Agent/Version.pm index f012c0c75..9436180d6 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.8-dev"; +our $VERSION = "1.8"; 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.8-dev" + "Based on GLPI Agent 1.8" ];