[libgovirt] Release 0.3.5
- From: Eduardo de Barros Lima <eblima src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libgovirt] Release 0.3.5
- Date: Fri, 29 Mar 2019 15:10:25 +0000 (UTC)
commit addd43ca41171b7c719ed34ad39bdc99579a01bb
Author: Eduardo Lima (Etrunko) <etrunko redhat com>
Date: Fri Dec 21 11:25:22 2018 -0200
Release 0.3.5
Signed-off-by: Eduardo Lima (Etrunko) <etrunko redhat com>
NEWS | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
configure.ac | 24 ++++++++++++++----------
2 files changed, 70 insertions(+), 12 deletions(-)
---
diff --git a/NEWS b/NEWS
index 5f0f959..8381a83 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,59 @@
-0.3.4 -
-======================
+0.3.5 - March 28th 2019
+=======================
+
+Changes since 0.3.4
+
+- API additions:
+ - ovirt_api_get_clusters()
+ - ovirt_api_get_data_centers()
+ - ovirt_api_get_hosts()
+
+ - ovirt_api_search_clusters()
+ - ovirt_api_search_data_centers()
+ - ovirt_api_search_hosts()
+ - ovirt_api_search_storage_domains()
+ - ovirt_api_search_vms()
+ - ovirt_api_search_vm_pools()
+
+ - ovirt_cluster_get_data_center()
+ - ovirt_cluster_get_type()
+ - ovirt_cluster_get_hosts()
+ - ovirt_cluster_new()
+
+ - ovirt_data_center_get_clusters()
+ - ovirt_data_center_get_storage_domains()
+ - ovirt_data_center_get_type()
+ - ovirt_data_center_new()
+
+ - ovirt_host_get_cluster()
+ - ovirt_host_get_type()
+ - ovirt_host_get_vms()
+ - ovirt_host_new()
+
+ - ovirt_vm_get_host()
+ - ovirt_vm_get_cluster()
+
+- Force use of v3 REST API
+- Fix crash on 404
+- Fix persistent session with oVirt 3.6
+- Support for new storage format added in oVirt 4.1
+- New unified mode for parsing nodes using a single struct
+- Initial support for hosts/clusters/datacenters
+- Support for searching queries of collections
+- New nodes can be created with name/uuid only, but require explicit refresh()
+ call to retrieve attributes/subnodes.
+- Improved error messages in case of error in async call
+- Translations:
+ * Danish (Ask Hjorth Larsen)
+ * Dutch (Nathan Follens)
+ * Friulian (Fabio Tomat)
+ * Italian (Milo Casagrande)
+ * Polish (Piotr Drąg)
+ * Spanish (Daniel Mustieles)
+
+
+0.3.4 - April 13th 2016
+=======================
Changes since 0.3.3
diff --git a/configure.ac b/configure.ac
index 4312e05..ee59fd5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4,7 +4,7 @@ AC_PREREQ(2.63)
m4_define([govirt_major_version], [0])
m4_define([govirt_minor_version], [3])
-m4_define([govirt_micro_version], [4])
+m4_define([govirt_micro_version], [5])
m4_define([govirt_version],
[govirt_major_version.govirt_minor_version.govirt_micro_version])
@@ -26,18 +26,22 @@ AC_SUBST(G_OVIRT_MAJOR_VERSION)
AC_SUBST(G_OVIRT_MINOR_VERSION)
AC_SUBST(G_OVIRT_MICRO_VERSION)
-# libtool versioning - this applies to libgovirt
+# Before making a release, the LT_VERSION string should be modified. The
+# string is of the form c:r:a. Follow these instructions sequentially:
+# 1. If the library source code has changed at all since the last update, then
+# increment revision (‘c:r:a’ becomes ‘c:r+1:a’).
+# 2. If any interfaces have been added, removed, or changed since the last
+# update, increment current, and set revision to 0.
+# 3. If any interfaces have been added since the last public release, then
+# increment age.
+# 4. If any interfaces have been removed or changed since the last public
+# release, then set age to 0.
#
-# See http://sources.redhat.com/autobook/autobook/autobook_91.html#SEC91
+# See https://developer.gnome.org/programming-guidelines/stable/versioning.html.en#libtool-versioning
# for details
-#
-# increment;
-# CURRENT If the API or ABI interface has changed (reset REVISION to 0)
-# REVISION If the API and ABI remains the same, but bugs are fixed.
-# AGE Don't use.
-LT_CURRENT=3
+LT_CURRENT=4
LT_REVISION=0
-LT_AGE=1
+LT_AGE=2
AC_SUBST(LT_CURRENT)
AC_SUBST(LT_REVISION)
AC_SUBST(LT_AGE)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]