Author: danielsh
Date: Tue Jun 28 16:29:06 2011
New Revision: 1140712

URL: http://svn.apache.org/viewvc?rev=1140712&view=rev
Log:
* docs/community-guide/releasing.part.html
  (deprecation): Fix 1.0.0->1.0, and use a different example to do so.

Modified:
    subversion/site/publish/docs/community-guide/releasing.part.html

Modified: subversion/site/publish/docs/community-guide/releasing.part.html
URL: 
http://svn.apache.org/viewvc/subversion/site/publish/docs/community-guide/releasing.part.html?rev=1140712&r1=1140711&r2=1140712&view=diff
==============================================================================
--- subversion/site/publish/docs/community-guide/releasing.part.html (original)
+++ subversion/site/publish/docs/community-guide/releasing.part.html Tue Jun 28 
16:29:06 2011
@@ -351,22 +351,24 @@ API documentation with a diff to the new
 
 <pre>
    /**
-    * @deprecated Provided for backward compatibility with the 1.0.0 API.
+    * Similar to svn_repos_dump_fs3(), but with a feedback_stream instead of
+    * handling feedback via the notify_func handler
     *
-    * Similar to svn_repos_dump_fs2(), but with the @a use_deltas
-    * parameter always set to @c FALSE.
+    * @since New in 1.1.
+    * @deprecated Provided for backward compatibility with the 1.6 API.
     */
    SVN_DEPRECATED
    svn_error_t *
-   svn_repos_dump_fs(svn_repos_t *repos,
-                     svn_stream_t *dumpstream,
-                     svn_stream_t *feedback_stream,
-                     svn_revnum_t start_rev,
-                     svn_revnum_t end_rev,
-                     svn_boolean_t incremental,
-                     svn_cancel_func_t cancel_func,
-                     void *cancel_baton,
-                     apr_pool_t *pool);
+   svn_repos_dump_fs2(svn_repos_t *repos,
+                      svn_stream_t *dumpstream,
+                      svn_stream_t *feedback_stream,
+                      svn_revnum_t start_rev,
+                      svn_revnum_t end_rev,
+                      svn_boolean_t incremental,
+                      svn_boolean_t use_deltas,
+                      svn_cancel_func_t cancel_func,
+                      void *cancel_baton,
+                      apr_pool_t *pool);
 </pre>
 
 <p>When the major release number changes, the "best" new API in a


Reply via email to