/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

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

  • Committer: Gustav Hartvigsson
  • Date: 2021-01-09 18:19:24 UTC
  • mto: (7526.3.2 work)
  • mto: This revision was merged to the branch mainline in revision 7529.
  • Revision ID: gustav.hartvigsson@gmail.com-20210109181924-1fqqq0wm435kw9r3
Removed documentaion about breezy.api...

... as it is no longer present in breezy.

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