Rev 3605: Document the change in the command lines use of MutablelTree and bump the API minimum version. in http://people.ubuntu.com/~robertc/baz2.0/3117

Robert Collins robertc at robertcollins.net
Mon Aug 4 23:41:24 BST 2008


At http://people.ubuntu.com/~robertc/baz2.0/3117

------------------------------------------------------------
revno: 3605
revision-id: robertc at robertcollins.net-20080804224118-pgxd6gg6a54luvrv
parent: robertc at robertcollins.net-20080804220734-xoo8j0kt3bdy26s9
committer: Robert Collins <robertc at robertcollins.net>
branch nick: 3117
timestamp: Tue 2008-08-05 08:41:18 +1000
message:
  Document the change in the command lines use of MutablelTree and bump the API minimum version.
modified:
  NEWS                           NEWS-20050323055033-4e00b5db738777ff
  bzrlib/__init__.py             __init__.py-20050309040759-33e65acf91bbcd5d
=== modified file 'NEWS'
--- a/NEWS	2008-08-04 07:29:51 +0000
+++ b/NEWS	2008-08-04 22:41:18 +0000
@@ -76,6 +76,15 @@
 
   API CHANGES:
 
+    * ``MutableTree.commit`` has an extra optional keywork parameter
+      ``exclude`` that will be unconditionally supplied by the command
+      line UI - plugins that add tree formats may need an update.
+      (Robert Collins)
+
+    * The API minimum version for plugin compatibility has been raised to
+      1.6 - there are significant changes throughout the code base.
+      (Robert Collins)
+
     * The generic fetch code now uses three attributes on Repository objects
       to control fetch. The streams requested are controlled via :
       ``_fetch_order`` and ``_fetch_uses_deltas``. Setting these

=== modified file 'bzrlib/__init__.py'
--- a/bzrlib/__init__.py	2008-07-17 19:11:37 +0000
+++ b/bzrlib/__init__.py	2008-08-04 22:41:18 +0000
@@ -44,8 +44,8 @@
 version_info = (1, 6, 0, 'beta', 4)
 
 
-# API compatibility version: bzrlib is currently API compatible with 0.18.
-api_minimum_version = (0, 18, 0)
+# API compatibility version: bzrlib is currently API compatible with 1.6.
+api_minimum_version = (1, 6, 0)
 
 def _format_version_tuple(version_info):
     """Turn a version number 3-tuple or 5-tuple into a short string.




More information about the bazaar-commits mailing list