From b06eff769d9c7c81548c43927fe79f99eadebd46 Mon Sep 17 00:00:00 2001 From: Peter Hatina Date: Wed, 29 Oct 2014 10:17:29 +0100 Subject: [PATCH] bump release version to 0.4.0 --- NEWS | 9 +++++++++ configure.ac | 4 ++-- lmiwbem.spec | 7 +++++-- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/NEWS b/NEWS index 6ff94b1..110945a 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,12 @@ +New in version 0.4.0: +* introduce WBEMConnection::setCredentials() +* introduce WBEMConnection::setRequestAcceptLanguages() +* introduce distutils as secondary build system +* add missing hostname property to CIMInstance(Name) +* simplify WBEMConnection::createInstance() +* refactor CIMConstants CIM errors +* various fixes + New in version 0.3.1: * fixed missing namespace in CIMInstance returned from EnumerateInstances() * name of CIMProperty or CIMParameter is present in TypeError, when type diff --git a/configure.ac b/configure.ac index 885c6d6..82ebcfe 100644 --- a/configure.ac +++ b/configure.ac @@ -2,8 +2,8 @@ AC_PREREQ([2.60]) dnl lmiwbem version number m4_define(lmiwbem_version_major, 0) -m4_define(lmiwbem_version_minor, 3) -m4_define(lmiwbem_version_patch, 1) +m4_define(lmiwbem_version_minor, 4) +m4_define(lmiwbem_version_patch, 0) m4_define(lmiwbem_version, lmiwbem_version_major.lmiwbem_version_minor.lmiwbem_version_patch) AC_INIT([lmiwbem], [lmiwbem_version], [phatina@redhat.com]) diff --git a/lmiwbem.spec b/lmiwbem.spec index 24cc03e..e84291d 100644 --- a/lmiwbem.spec +++ b/lmiwbem.spec @@ -1,8 +1,8 @@ %global with_doc 0 Name: lmiwbem -Version: 0.3.1 -Release: 3%{?dist} +Version: 0.4.0 +Release: 1%{?dist} Summary: Python WBEM Client License: LGPLv2+ URL: https://github.com/phatina/lmiwbem @@ -64,6 +64,9 @@ find %{buildroot} -name '*.la' | xargs rm -f %endif %changelog +* Wed Oct 29 2014 Peter Hatina - 0.4.0-1 +- upgrade to 0.4.0 + * Tue Sep 23 2014 Peter Hatina - 0.3.1-3 - introduce conditional documentation build