~jelmer/brz/smartmerge

« back to all changes in this revision

Viewing changes to doc/developers/plugin-api.txt

  • Committer: Breezy landing bot
  • Author(s): Gustav Hartvigsson
  • Date: 2021-01-10 18:46:30 UTC
  • mfrom: (7526.2.1 brz-removed-api-doc)
  • Revision ID: breezy.the.bot@gmail.com-20210110184630-dxu0g9dqq020uiw6
Drop documentation for removed API API.

Merged from https://code.launchpad.net/~gustav-hartvigsson/brz/removed-api-doc/+merge/396033

Show diffs side-by-side

added added

removed removed

Lines of Context:
189
189
This is a user-visible docstring so should be prefixed with ``__doc__ =``
190
190
to ensure help works under ``python -OO`` with docstrings stripped.
191
191
 
192
 
API version
193
 
-----------
194
 
 
195
 
Plugins can and should declare that they depend on a particular version of
196
 
breezy like so::
197
 
 
198
 
    from breezy.api import require_api
199
 
 
200
 
    require_api(breezy, (1, 11, 0))
201
 
 
202
 
Please see `API versioning <api-versioning.html>`_ for more details on the API
203
 
metadata protocol used by breezy.
204
 
 
205
192
Plugin version
206
193
--------------
207
194