]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
* NEWS configure.in docs/libvir.html docs/news.html include/libvirt.h
authorDaniel Veillard <veillard@redhat.com>
Fri, 10 Feb 2006 10:28:59 +0000 (10:28 +0000)
committerDaniel Veillard <veillard@redhat.com>
Fri, 10 Feb 2006 10:28:59 +0000 (10:28 +0000)
  libvirt.spec.in: preparing 0.0.4 release
Daniel

ChangeLog
NEWS
configure.in
docs/libvir.html
docs/news.html
include/libvirt.h
include/libvirt/libvirt.h
libvirt.spec.in

index 54a5a9f101ef50714da1d3464837749cd39421a3..8899d3caaa15f77a77099880b5811dec00b7af4d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Fri Feb 10 11:21:53 EST 2006 Daniel Veillard <veillard@redhat.com>
+
+       * NEWS configure.in docs/libvir.html docs/news.html include/libvirt.h
+         libvirt.spec.in: preparing 0.0.4 release
+
 Fri Feb 10 11:09:11 CET 2006 Daniel Veillard <veillard@redhat.com>
 
        * README TODO config.h.in libvirt.pc.in: more cleanups.
diff --git a/NEWS b/NEWS
index 74ebdcbcfb41a04d703ab445032e81d5199f5aba..5b42f702f5addac6350a2069d6fc58afa1c56d00 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,10 @@
        http://libvirt.org/news.html
 
 Releases
+0.0.4: Feb 10 2006:
+   - Fix various bugs introduced in the name change
+
+
 0.0.3: Feb 9 2006:
    - Switch name from from 'libvir' to libvirt
    - Starting infrastructure to add code examples
index fd907289ba119f7d18221b1991eff06ad144fd3a..f333e8a6566a08f96e1c0983d34709196a2c320e 100644 (file)
@@ -5,7 +5,7 @@ AC_CANONICAL_HOST
 
 LIBVIR_MAJOR_VERSION=0
 LIBVIR_MINOR_VERSION=0
-LIBVIR_MICRO_VERSION=3
+LIBVIR_MICRO_VERSION=4
 LIBVIR_MICRO_VERSION_SUFFIX=
 LIBVIR_VERSION=$LIBVIR_MAJOR_VERSION.$LIBVIR_MINOR_VERSION.$LIBVIR_MICRO_VERSION$LIBVIR_MICRO_VERSION_SUFFIX
 LIBVIR_VERSION_INFO=`expr $LIBVIR_MAJOR_VERSION + $LIBVIR_MINOR_VERSION`:$LIBVIR_MICRO_VERSION:$LIBVIR_MINOR_VERSION
@@ -64,7 +64,7 @@ AC_SUBST(HTML_DIR)
 dnl
 dnl specific tests to setup DV devel environments with debug etc ...
 dnl
-if [[ "${LOGNAME}" = "veillard" -a "`pwd`" = "/u/veillard/libvir" ]] ; then
+if [[ "${LOGNAME}" = "veillard" -a "`pwd`" = "/u/veillard/libvirt" ]] ; then
     STATIC_BINARIES="-static"
 else
     STATIC_BINARIES=
index 0d177fabb6f19f7a9c6232bb894ea5effeb8d944..a184e24c9569c25b23e19fe9225d56849810cd8d 100644 (file)
@@ -33,6 +33,11 @@ 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>
+</ul>
+
 <h3>0.0.3: Feb 9 2006</h3>
 <ul>
   <li>Switch name from from 'libvir' to libvirt</li>
index 53d0b03a81a83cdb71d5ff256f9972c0feb1714d..d3c59672e6f511584e929e68690047fe6c6ed3ac 100644 (file)
@@ -2,7 +2,8 @@
 <!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.3: Feb 9 2006</h3><ul><li>Switch name from from 'libvir' to libvirt</li>
+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>
+</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>
 </ul><h3>0.0.2: Jan 29 2006</h3><ul><li>Update of the documentation, web site redesign (Diana Fong)</li>
index fc27b596da3ca5782b8d393d9c392b6ee584bee9..10f271b4f59d2ded06165ee8ae47cf1310648b60 100644 (file)
@@ -167,7 +167,7 @@ typedef enum {
  * version * 1,000,000 + minor * 1000 + micro
  */
 
-#define LIBVIR_VERSION_NUMBER 3
+#define LIBVIR_VERSION_NUMBER 4
 
 int                    virGetVersion           (unsigned long *libVer,
                                                 const char *type,
index fc27b596da3ca5782b8d393d9c392b6ee584bee9..10f271b4f59d2ded06165ee8ae47cf1310648b60 100644 (file)
@@ -167,7 +167,7 @@ typedef enum {
  * version * 1,000,000 + minor * 1000 + micro
  */
 
-#define LIBVIR_VERSION_NUMBER 3
+#define LIBVIR_VERSION_NUMBER 4
 
 int                    virGetVersion           (unsigned long *libVer,
                                                 const char *type,
index e3cfce67c6e5492ca8696a011d6d15b17739958e..1911aba1576ccc045792d7d91c4d9916f8825fd1 100644 (file)
@@ -90,6 +90,9 @@ rm -fr %{buildroot}
 %doc python/libvirtclass.txt
 
 %changelog
+* Fri Feb 10 2006 Daniel Veillard <veillard@redhat.com> 0.0.4-1
+- fixes some problems in 0.0.3 due to the change of names
+
 * Wed Feb  8 2006 Daniel Veillard <veillard@redhat.com> 0.0.3-1
 - changed library name to libvirt from libvir, complete and test the python 
   bindings