From 8be4e228ed07685ac1df4279a27031a0b0663da0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Klaus=20K=C3=A4mpf?= Date: Mon, 1 Jun 2015 13:57:22 +0200 Subject: [PATCH] Upgrade to 2.5.0 --- ChangeLog | 11 +++++++++++ configure.in | 4 ++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0011734..da696cf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +Version 2.5 + - 'wsman -h' exits with zero + - properties and selectors are kept sorted + (requires Openwsman 2.5 now) + +Version 2.4 + - skipped - + +Version 2.3.2 + - keep properties (invoke call parameters) sorted + Version 2.3.1 - exit with non-zero code if connection fails - man pages (Kent Baxley) diff --git a/configure.in b/configure.in index 0dba1db..462c948 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT(wsmancli, 2.3.2) +AC_INIT(wsmancli, 2.5.0) AC_CONFIG_SRCDIR(wsmancli.spec.in) AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION) AM_CONFIG_HEADER(config.h) @@ -18,7 +18,7 @@ AC_SUBST(WSMAN_PKG) PACKAGE_BUILDTS=`date +%Y%m%d%H%M` AC_SUBST(PACKAGE_BUILDTS) -PKG_CHECK_MODULES(OPENWSMAN, [openwsman >= 2.2.7]) +PKG_CHECK_MODULES(OPENWSMAN, [openwsman >= 2.5]) have_cunit=no AC_CHECK_HEADERS([CUnit/Basic.h], have_cunit="yes" ) AM_CONDITIONAL(BUILD_CUNIT_TESTS, test "$have_cunit" == "yes")