From 8fadb63ba0bf2870092f2966221297e8671b5fe8 Mon Sep 17 00:00:00 2001 From: Guillaume Bougard Date: Fri, 22 Dec 2023 18:15:54 +0100 Subject: [PATCH] feat: update for 1.8 development --- Changes | 2 ++ Makefile.PL | 2 +- lib/GLPI/Agent/Version.pm | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index 24d38eccb..9ee4f13ad 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,7 @@ Revision history for GLPI agent +1.8 not yet released + 1.7.1 Fri, 22 Dec 2023 core: diff --git a/Makefile.PL b/Makefile.PL index 01fdd76c1..4b1c42f16 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.7.1'; +version '1.8-dev'; perl_version '5.008'; authors 'Teclib Editions'; diff --git a/lib/GLPI/Agent/Version.pm b/lib/GLPI/Agent/Version.pm index 0dbd6cee6..f012c0c75 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.7.1"; +our $VERSION = "1.8-dev"; 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.7.1" + "Based on GLPI Agent 1.8-dev" ];