]> xenbits.xensource.com Git - libvirt.git/commitdiff
maint: prepare for next release number
authorEric Blake <eblake@redhat.com>
Mon, 15 Oct 2012 21:17:34 +0000 (15:17 -0600)
committerEric Blake <eblake@redhat.com>
Tue, 16 Oct 2012 14:09:01 +0000 (08:09 -0600)
Given Daniel's announcement[1], code targetting the next release will
be in 1.0.0, not 0.10.3.  Changed mechanically with:

for f in $(git grep -l '0\(.\)10\13\b') ; do
   sed -i -e 's/0\(.\)10\13/1\10\10/g' $f
done

[1]https://www.redhat.com/archives/libvir-list/2012-October/msg00403.html

* docs/formatdomain.html.in: Use 1.0.0 for next release.
* src/interface/interface_backend_udev.c: Likewise.

docs/formatdomain.html.in
src/interface/interface_backend_udev.c

index 1ae8cf41b930d37736b0b7880c8dd454a61bdd36..ad8a41be68371c6f2133a918044fb3a92919dd12 100644 (file)
 
     <p>
       The <code>on_lockfailure</code> element (<span class="since">since
-      0.10.3</span>) may be used to configure what action should be
+      1.0.0</span>) may be used to configure what action should be
       taken when a lock manager loses resource locks. The following
       actions are recognized by libvirt, although not all of them need
       to be supported by individual lock managers. When no action is
       address on the hosts using the <code>address</code> element. PCI devices
       on the other hand can only be described by their <code>address</code>.
 
-      <span class="since">Since 0.10.3</span>, the <code>source</code> element
+      <span class="since">Since 1.0.0</span>, the <code>source</code> element
       of USB devices may contain <code>startupPolicy</code> attribute which can
       be used to define policy what to do if the specified host USB device is
       not found. The attribute accepts the following values:
index 1cb6dfe17219898f7771addf83eb2377bae44e7c..0cb344e99bc92e95d257987439a4644ee22c7eb4 100644 (file)
@@ -520,16 +520,16 @@ cleanup:
 
 static virInterfaceDriver udevIfaceDriver = {
     "udev",
-    .open = udevIfaceOpenInterface, /* 0.10.3 */
-    .close = udevIfaceCloseInterface, /* 0.10.3 */
-    .numOfInterfaces = udevIfaceNumOfInterfaces, /* 0.10.3 */
-    .listInterfaces = udevIfaceListInterfaces, /* 0.10.3 */
-    .numOfDefinedInterfaces = udevIfaceNumOfDefinedInterfaces, /* 0.10.3 */
-    .listDefinedInterfaces = udevIfaceListDefinedInterfaces, /* 0.10.3 */
-    .listAllInterfaces = udevIfaceListAllInterfaces, /* 0.10.3 */
-    .interfaceLookupByName = udevIfaceLookupByName, /* 0.10.3 */
-    .interfaceLookupByMACString = udevIfaceLookupByMACString, /* 0.10.3 */
-    .interfaceIsActive = udevIfaceIsActive, /* 0.10.3 */
+    .open = udevIfaceOpenInterface, /* 1.0.0 */
+    .close = udevIfaceCloseInterface, /* 1.0.0 */
+    .numOfInterfaces = udevIfaceNumOfInterfaces, /* 1.0.0 */
+    .listInterfaces = udevIfaceListInterfaces, /* 1.0.0 */
+    .numOfDefinedInterfaces = udevIfaceNumOfDefinedInterfaces, /* 1.0.0 */
+    .listDefinedInterfaces = udevIfaceListDefinedInterfaces, /* 1.0.0 */
+    .listAllInterfaces = udevIfaceListAllInterfaces, /* 1.0.0 */
+    .interfaceLookupByName = udevIfaceLookupByName, /* 1.0.0 */
+    .interfaceLookupByMACString = udevIfaceLookupByMACString, /* 1.0.0 */
+    .interfaceIsActive = udevIfaceIsActive, /* 1.0.0 */
 };
 
 int