Releases
Here is the list of official releases, however since it is early on in the
development of libvirt, it is preferable when possible to just use the CVS version or snapshot, contact the mailing list
-and check the ChangeLog to gauge progresses.
0.0.5: Feb 23 2006
- Added XML description parsing, dependance to libxml2, implemented the
+and check the ChangeLog to gauge progresses.
0.0.6: Feb 28 2006
- add UUID lookup and extract API
+ - add error handling APIs both synchronous and asynchronous
+ - added minimal hook for error handling at the python level, improved the
+ python bindings
+ - augment the documentation and tests to cover error handling
+
0.0.5: Feb 23 2006
- Added XML description parsing, dependance to libxml2, implemented the
creation API virDomainCreateLinux()
- new APIs to lookup and name domain by UUID
- fixed the XML dump when using the Xend access
diff --git a/include/libvirt.h b/include/libvirt.h
index e429c969fa..2e9f995cf7 100644
--- a/include/libvirt.h
+++ b/include/libvirt.h
@@ -167,7 +167,7 @@ typedef enum {
* version * 1,000,000 + minor * 1000 + micro
*/
-#define LIBVIR_VERSION_NUMBER 5
+#define LIBVIR_VERSION_NUMBER 6
int virGetVersion (unsigned long *libVer,
const char *type,
diff --git a/include/libvirt/libvirt.h b/include/libvirt/libvirt.h
index e429c969fa..2e9f995cf7 100644
--- a/include/libvirt/libvirt.h
+++ b/include/libvirt/libvirt.h
@@ -167,7 +167,7 @@ typedef enum {
* version * 1,000,000 + minor * 1000 + micro
*/
-#define LIBVIR_VERSION_NUMBER 5
+#define LIBVIR_VERSION_NUMBER 6
int virGetVersion (unsigned long *libVer,
const char *type,
diff --git a/libvirt.spec.in b/libvirt.spec.in
index 14000dfee6..665afa7da7 100644
--- a/libvirt.spec.in
+++ b/libvirt.spec.in
@@ -99,6 +99,12 @@ rm -fr %{buildroot}
%doc python/libvirtclass.txt
%changelog
+* Tue Feb 28 2006 Daniel Veillard 0.0.6-1
+- added error handling APIs
+- small bug fixes
+- improve python bindings
+- augment documentation and regression tests
+
* Thu Feb 23 2006 Daniel Veillard 0.0.5-1
- new domain creation API
- new UUID based APIs
diff --git a/python/Makefile.am b/python/Makefile.am
index 96865a44dd..f0d75a7325 100644
--- a/python/Makefile.am
+++ b/python/Makefile.am
@@ -50,7 +50,8 @@ GENERATED= libvirt.py \
libvirt-export.c \
libvirtclass.txt \
libvirt-py.c \
- libvirt-py.h
+ libvirt-py.h \
+ libvirtclass.py
CLEANFILES= $(GENERATED) gen_prog libvirt.py
--
2.39.5