diff --git a/doc/topics/releases/2014.7.0.rst b/doc/topics/releases/2014.7.0.rst index 381e47f162..68e6c0eefd 100644 --- a/doc/topics/releases/2014.7.0.rst +++ b/doc/topics/releases/2014.7.0.rst @@ -123,9 +123,10 @@ All of the fileserver backends have been overhauled to be faster, lighter and mo New Modules =========== -Syslog-ng -Oracle -random +- Syslog-ng +- Oracle +- Random +- Redis Deprecations ============ diff --git a/salt/modules/redismod.py b/salt/modules/redismod.py index f8d5afd448..5ece73fdc2 100644 --- a/salt/modules/redismod.py +++ b/salt/modules/redismod.py @@ -2,6 +2,8 @@ ''' Module to provide redis functionality to Salt +.. versionadded:: 2014.7.0 + :configuration: This module requires the redis python module and uses the following defaults which may be overridden in the minion configuration: diff --git a/salt/pillar/redismod.py b/salt/pillar/redismod.py index 85b31b0e2a..004381ca7e 100644 --- a/salt/pillar/redismod.py +++ b/salt/pillar/redismod.py @@ -3,6 +3,8 @@ Read pillar data from a Redis backend ===================================== +.. versionadded:: 2014.7.0 + :depends: - redis Python module (on master) Salt Master Redis Configuration diff --git a/salt/states/redismod.py b/salt/states/redismod.py index 52d2c222f0..d3c99e3c4d 100644 --- a/salt/states/redismod.py +++ b/salt/states/redismod.py @@ -3,6 +3,8 @@ Management of Redis server ========================== +.. versionadded:: 2014.7.0 + :depends: - redis Python module :configuration: See :py:mod:`salt.modules.redis` for setup instructions.