+Thu Feb 23 11:41:06 CET 2006 Daniel Veillard <veillard@redhat.com>
+
+ * NEWS configure.in docs/libvir.html docs/news.html: preparing the
+ release of 0.0.5
+ * include/libvirt.h.in: fixed APIs definition
+
Thu Feb 23 05:31:46 EST 2006 Daniel Veillard <veillard@redhat.com>
* python/tests/Makefile.am: added the create.py in the regression tests
http://libvirt.org/news.html
Releases
+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
+ - Fixed a few more problem related to the name change
+ - Adding regression tests in python and examples in C
+ - web site improvement, extended the documentation to cover the XML
+ format and Python API
+ - Added devhelp help for Gnome/Gtk programmers
+
+
0.0.4: Feb 10 2006:
- Fix various bugs introduced in the name change
LIBVIRT_MAJOR_VERSION=0
LIBVIRT_MINOR_VERSION=0
-LIBVIRT_MICRO_VERSION=4
+LIBVIRT_MICRO_VERSION=5
LIBVIRT_MICRO_VERSION_SUFFIX=
LIBVIRT_VERSION=$LIBVIRT_MAJOR_VERSION.$LIBVIRT_MINOR_VERSION.$LIBVIRT_MICRO_VERSION$LIBVIRT_MICRO_VERSION_SUFFIX
LIBVIRT_VERSION_INFO=`expr $LIBVIRT_MAJOR_VERSION + $LIBVIRT_MINOR_VERSION`:$LIBVIRT_MICRO_VERSION:$LIBVIRT_MINOR_VERSION
href="downloads.html">CVS version or snapshot</a>, contact the mailing list
and check the <a href="ChangeLog.html">ChangeLog</a> to gauge progresses.</p>
+<h3>0.0.5: Feb 23 2006</h3>
+<ul>
+ <li>Added XML description parsing, dependance to libxml2, implemented the
+ creation API virDomainCreateLinux()</li>
+ <li>new APIs to lookup and name domain by UUID</li>
+ <li>fixed the XML dump when using the Xend access</li>
+ <li>Fixed a few more problem related to the name change</li>
+ <li>Adding regression tests in python and examples in C</li>
+ <li>web site improvement, extended the documentation to cover the XML
+ format and Python API</li>
+ <li>Added devhelp help for Gnome/Gtk programmers</li>
+</ul>
+
<h3>0.0.4: Feb 10 2006</h3>
<ul>
<li>Fix various bugs introduced in the name change</li>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="stylesheet" type="text/css" href="libvirt.css" /><link rel="SHORTCUT ICON" href="/32favicon.png" /><title>Releases</title></head><body><div id="container"><div id="intro"><div id="adjustments"></div><div id="pageHeader"></div><div id="content2"><h1 class="style1">Releases</h1><p>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 <a href="downloads.html">CVS version or snapshot</a>, contact the mailing list
-and check the <a href="ChangeLog.html">ChangeLog</a> to gauge progresses.</p><h3>0.0.4: Feb 10 2006</h3><ul><li>Fix various bugs introduced in the name change</li>
+and check the <a href="ChangeLog.html">ChangeLog</a> to gauge progresses.</p><h3>0.0.5: Feb 23 2006</h3><ul><li>Added XML description parsing, dependance to libxml2, implemented the
+ creation API virDomainCreateLinux()</li>
+ <li>new APIs to lookup and name domain by UUID</li>
+ <li>fixed the XML dump when using the Xend access</li>
+ <li>Fixed a few more problem related to the name change</li>
+ <li>Adding regression tests in python and examples in C</li>
+ <li>web site improvement, extended the documentation to cover the XML
+ format and Python API</li>
+ <li>Added devhelp help for Gnome/Gtk programmers</li>
+</ul><h3>0.0.4: Feb 10 2006</h3><ul><li>Fix various bugs introduced in the name change</li>
</ul><h3>0.0.3: Feb 9 2006</h3><ul><li>Switch name from from 'libvir' to libvirt</li>
<li>Starting infrastructure to add code examples</li>
<li>Update of python bindings for completeness</li>
* version * 1,000,000 + minor * 1000 + micro
*/
-#define LIBVIR_VERSION_NUMBER 4
+#define LIBVIR_VERSION_NUMBER 5
int virGetVersion (unsigned long *libVer,
const char *type,
virDomainPtr virDomainLookupByID (virConnectPtr conn,
int id);
virDomainPtr virDomainLookupByUUID (virConnectPtr conn,
- const char *uuid);
+ const unsigned char *uuid);
int virDomainShutdown (virDomainPtr domain);
int virDomainDestroy (virDomainPtr domain);
int virDomainFree (virDomainPtr domain);
const char * virDomainGetName (virDomainPtr domain);
unsigned int virDomainGetID (virDomainPtr domain);
int virDomainGetUUID (virDomainPtr domain,
- char *uuid);
+ unsigned char *uuid);
char * virDomainGetOSType (virDomainPtr domain);
unsigned long virDomainGetMaxMemory (virDomainPtr domain);
int virDomainSetMaxMemory (virDomainPtr domain,
* version * 1,000,000 + minor * 1000 + micro
*/
-#define LIBVIR_VERSION_NUMBER 4
+#define LIBVIR_VERSION_NUMBER 5
int virGetVersion (unsigned long *libVer,
const char *type,
virDomainPtr virDomainLookupByID (virConnectPtr conn,
int id);
virDomainPtr virDomainLookupByUUID (virConnectPtr conn,
- const char *uuid);
+ const unsigned char *uuid);
int virDomainShutdown (virDomainPtr domain);
int virDomainDestroy (virDomainPtr domain);
int virDomainFree (virDomainPtr domain);
const char * virDomainGetName (virDomainPtr domain);
unsigned int virDomainGetID (virDomainPtr domain);
int virDomainGetUUID (virDomainPtr domain,
- char *uuid);
+ unsigned char *uuid);
char * virDomainGetOSType (virDomainPtr domain);
unsigned long virDomainGetMaxMemory (virDomainPtr domain);
int virDomainSetMaxMemory (virDomainPtr domain,