Skip to content

Commit

Permalink
Update to correct versionadded number
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeffrey Hogan committed Jul 19, 2018
1 parent fa44c68 commit c24db79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/advanced_usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Advanced Usage
Custom Requests / HTTP Adapter
------------------------------

.. versionadded:: 0.6.3
.. versionadded:: 0.6.2

Calls to the `requests module`_. (which provides the methods hvac utilizes to send HTTP/HTTPS request to Vault instances) were extracted from the :class:`Client <hvac.v1.Client>` class and moved to a newly added :meth:`hvac.adapters` module. The :class:`Client <hvac.v1.Client>` class itself defaults to an instance of the :class:`Request <hvac.adapters.Request>` class for its :attr:`_adapter <hvac.v1.Client._adapter>` private attribute attribute if no adapter argument is provided to its :meth:`constructor <hvac.v1.Client.__init__>`. This attribute provides an avenue for modifying the manner in which hvac completes request. To enable this type of customization, implement a class of type :meth:`hvac.adapters.Adapter`, override its abstract methods, and pass an instance of this custom class to the adapter argument of the :meth:`Client constructor <hvac.v1.Client.__init__>`

Expand Down
2 changes: 1 addition & 1 deletion docs/examples/system_backend.rst
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ View and Manage Leases

Read a lease:

.. versionadded:: 0.6.3
.. versionadded:: 0.6.2

.. code-block:: python
Expand Down

0 comments on commit c24db79

Please sign in to comment.