Replace references to 0.16.1 with 0.16.2

This commit is contained in:
Erik Johnson 2013-08-01 20:10:45 -05:00
parent fa6170d9f4
commit eb339ef1fa
8 changed files with 14 additions and 14 deletions

View File

@ -45,7 +45,7 @@ release can be cut:
#. On the release branch (i.e. ``0.16``), create an annotated tag for the
revision release. It should be preceded by the letter ``v``. (e.g.
``v0.16.1``) Release candidates are unnecessary for bugfix releases.
``v0.16.2``) Release candidates are unnecessary for bugfix releases.
#. The release should be packaged from this annotated tag and uploaded to PyPI.
#. The packagers should be notified on the ``salt-packagers`` mailing list so
they can create packages for all the major operating systems.

View File

@ -44,6 +44,6 @@ Consider the following example:
Consider that the current salt release is ``0.16.0``. Whenever ``foo`` is
passed a value different from ``None`` that warning will be shown to the user.
This will happen in versions ``0.16.1`` to ``0.18.0``, after which a
This will happen in versions ``0.16.2`` to ``0.18.0``, after which a
:py:exc:`RuntimeError` will be raised making us aware that the deprecated code
should now be removed.

View File

@ -171,7 +171,7 @@ will return a freshly reloaded pillar and :mod:`pillar.raw
# salt '*' pillar.items
.. note::
Prior to version 0.16.1, this function is named ``pillar.data``. This
Prior to version 0.16.2, this function is named ``pillar.data``. This
function name is still supported for backwards compatibility.

View File

@ -44,7 +44,7 @@ pillars can be seen via the following command:
# salt '*' pillar.items
.. note::
Prior to version 0.16.1, this function is named ``pillar.data``. This
Prior to version 0.16.2, this function is named ``pillar.data``. This
function name is still supported for backwards compatibility.
By default the contents of the master configuration file are loaded into

View File

@ -17,7 +17,7 @@ Module to provide MySQL compatibility to salt.
mysql.default_file: '/etc/mysql/debian.cnf'
.. versionchanged:: 0.16.1
.. versionchanged:: 0.16.2
Connection arguments from the minion config file can be overridden on the
CLI by using the arguments defined :doc:`here
</ref/states/all/salt.states.mysql_user>`. Additionally, it is now possible
@ -564,7 +564,7 @@ def user_exists(user,
if passwordless login is permitted by omitting ``password`` and
``password_hash``, and using ``passwordless=True``.
.. versionadded:: 0.16.1
.. versionadded:: 0.16.2
The ``passwordless`` option was added.
CLI Example::
@ -661,7 +661,7 @@ def user_create(user,
If ``True``, then ``password`` and ``password_hash`` can be omitted (or
set to ``None``) to permit a passwordless login.
.. versionadded:: 0.16.1
.. versionadded:: 0.16.2
The ``allow_passwordless`` option was added.
CLI Examples::
@ -742,7 +742,7 @@ def user_chpass(user,
If ``True``, then ``password`` and ``password_hash`` can be omitted (or
set to ``None``) to permit a passwordless login.
.. versionadded:: 0.16.1
.. versionadded:: 0.16.2
The ``allow_passwordless`` option was added.
CLI Examples::

View File

@ -62,7 +62,7 @@ data = items
def item(*args):
'''
.. versionadded:: 0.16.1
.. versionadded:: 0.16.2
Return one ore more pillar entries

View File

@ -202,7 +202,7 @@ def install(pkgs=None,
user
The user under which to run pip
.. note::
The ``runas`` argument is deprecated as of 0.16.1. ``user`` should be
The ``runas`` argument is deprecated as of 0.16.2. ``user`` should be
used instead.
no_chown
When user is given, do not attempt to copy and chown
@ -508,7 +508,7 @@ def uninstall(pkgs=None,
user
The user under which to run pip
.. note::
The ``runas`` argument is deprecated as of 0.16.1. ``user`` should be
The ``runas`` argument is deprecated as of 0.16.2. ``user`` should be
used instead.
no_chown
When user is given, do not attempt to copy and chown
@ -640,7 +640,7 @@ def freeze(bin_env=None,
user
The user under which to run pip
.. note::
The ``runas`` argument is deprecated as of 0.16.1. ``user`` should be
The ``runas`` argument is deprecated as of 0.16.2. ``user`` should be
used instead.
cwd
Current working directory to run pip from

View File

@ -15,7 +15,7 @@ information.
- password: bobcat
.. versionadded:: 0.16.1
.. versionadded:: 0.16.2
Authentication overrides have been added.
The MySQL authentication information specified in the minion config file can be
@ -96,7 +96,7 @@ def present(name,
permit a passwordless login.
.. note::
The ``allow_passwordless`` option will be available in version 0.16.1.
The ``allow_passwordless`` option will be available in version 0.16.2.
'''
ret = {'name': name,
'changes': {},