Skip to content

Commit 651d911

Browse files
committed
feat: GLPI Agent 1.7.3 release
1 parent ff412fa commit 651d911

File tree

7 files changed

+13
-7
lines changed

7 files changed

+13
-7
lines changed

Changes

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Revision history for GLPI agent
22

3-
1.7.3 not yet released
3+
1.7.3 Wed, 03 Apr 2024
44

55
packaging:
66
* Fix LOCAL was set to installation folder during windows MSI installation v1.7.2,

Makefile.PL

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ include 'Module::AutoInstall';
1414
abstract 'GLPI unified Agent for UNIX, Linux, Windows and MacOSX';
1515
license 'gpl';
1616
repository 'https://github.com/glpi-project/glpi-agent';
17-
version '1.7.2';
17+
version '1.7.3';
1818
perl_version '5.008';
1919
authors 'Teclib Editions';
2020

contrib/unix/make-linux-appimage.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44

55
ROOT="`pwd`"
66

7-
: ${VERSION:=1.7.2}
7+
: ${VERSION:=1.7.3}
88
: ${ARCH:=x86_64}
99

1010
PREPARE="no"

contrib/unix/make-linux-installer.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ HERE="`pwd`"
44

55
cd "${0%/*}"
66

7-
: ${VERSION:=1.7.2}
7+
: ${VERSION:=1.7.3}
88
: ${DISTRO:=linux}
99

1010
while [ -n "$1" ]

contrib/windows/glpi-agent-deployment.vbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Dim Setup, SetupArchitecture, SetupLocation, SetupNightlyLocation, SetupOptions,
6464
' SetupVersion
6565
' Setup version with the pattern <major>.<minor>.<release>[-<package>]
6666
'
67-
SetupVersion = "1.7.2"
67+
SetupVersion = "1.7.3"
6868

6969
' When using a nightly built version, uncomment the following SetupVersion definition line
7070
' replacing gitABCDEFGH with the most recent git revision found on the nightly builds site

debian/changelog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
glpi-agent (1:1.7.3-1) unstable; urgency=medium
2+
3+
* New upstream release 1.7.3
4+
5+
-- Guillaume Bougard <[email protected]> Wed, 03 Apr 2024 11:48:27 +0200
6+
17
glpi-agent (1:1.7.2-1) unstable; urgency=medium
28

39
* New upstream release 1.7.2

lib/GLPI/Agent/Version.pm

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package GLPI::Agent::Version;
33
use strict;
44
use warnings;
55

6-
our $VERSION = "1.7.2";
6+
our $VERSION = "1.7.3";
77
our $PROVIDER = "GLPI";
88
our $COMMENTS = [];
99

@@ -31,5 +31,5 @@ agent issue is reported.
3131
One very useful information should be first defined like in that example:
3232
3333
our $COMMENTS = [
34-
"Based on GLPI Agent 1.7.2"
34+
"Based on GLPI Agent 1.7.3"
3535
];

0 commit comments

Comments
 (0)