From a998fb843244bc24d21cb60a54e9fdc7cddaf1ed Mon Sep 17 00:00:00 2001 From: Guillaume Bougard Date: Wed, 15 Nov 2023 19:04:54 +0100 Subject: [PATCH] feat: update for 1.7 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 47f7ebff5..d52377093 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,7 @@ Revision history for GLPI agent +1.7 not yet released + 1.6 Wed, 15 Nov 2023 core: diff --git a/Makefile.PL b/Makefile.PL index a7fd754ff..b685cfbd6 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'; +version '1.7-dev'; perl_version '5.008'; authors 'Teclib Editions'; diff --git a/lib/GLPI/Agent/Version.pm b/lib/GLPI/Agent/Version.pm index 947a9264b..a419e770c 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"; +our $VERSION = "1.7-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.6" + "Based on GLPI Agent 1.7-dev" ];