diff options
author | Ronan Amicel <ronan.amicel@gmail.com> | 2012-09-21 03:32:53 +0200 |
---|---|---|
committer | Ronan Amicel <ronan.amicel@gmail.com> | 2012-09-21 03:32:53 +0200 |
commit | d57ad763b92ab9e3e019bd1800f8ad658a45a0a7 (patch) | |
tree | 8e61e7c1533a8d01779029943ca5b8a7850e69eb | |
parent | Fix manifest (diff) | |
download | fabtools-d57ad763b92ab9e3e019bd1800f8ad658a45a0a7.tar.xz |
Documentation fixes
-rw-r--r-- | docs/CHANGELOG.rst | 5 | ||||
-rw-r--r-- | docs/api/require/files.rst | 2 | ||||
-rw-r--r-- | docs/api/shorewall.rst | 2 | ||||
-rw-r--r-- | docs/conf.py | 4 | ||||
-rw-r--r-- | fabtools/openvz/contextmanager.py | 1 | ||||
-rw-r--r-- | setup.py | 2 |
6 files changed, 11 insertions, 5 deletions
diff --git a/docs/CHANGELOG.rst b/docs/CHANGELOG.rst index d3655ed..4481717 100644 --- a/docs/CHANGELOG.rst +++ b/docs/CHANGELOG.rst @@ -1,6 +1,11 @@ Changelog ========= +Version 0.5.1 (2012-09-21) +-------------------------- + +* Documentation and packaging fixes + Version 0.5 (2012-09-21) ------------------------ diff --git a/docs/api/require/files.rst b/docs/api/require/files.rst index 07dd030..7188054 100644 --- a/docs/api/require/files.rst +++ b/docs/api/require/files.rst @@ -1,7 +1,7 @@ .. _require_files_module: :mod:`fabtools.require.files` ---------------------------- +----------------------------- .. automodule:: fabtools.require.files :members: diff --git a/docs/api/shorewall.rst b/docs/api/shorewall.rst index 67a914c..4793d3a 100644 --- a/docs/api/shorewall.rst +++ b/docs/api/shorewall.rst @@ -1,7 +1,7 @@ .. _shorewall_module: :mod:`fabtools.shorewall` ------------------------- +------------------------- .. automodule:: fabtools.shorewall diff --git a/docs/conf.py b/docs/conf.py index 412b671..840d1ab 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -54,9 +54,9 @@ copyright = u'2012, Ronan Amicel' # built documents. # # The short X.Y version. -version = '0.5' +version = '0.5.1' # The full version, including alpha/beta/rc tags. -release = '0.5' +release = '0.5.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/fabtools/openvz/contextmanager.py b/fabtools/openvz/contextmanager.py index 98b3108..a816bb1 100644 --- a/fabtools/openvz/contextmanager.py +++ b/fabtools/openvz/contextmanager.py @@ -43,6 +43,7 @@ def guest(name_or_ctid): **root** inside the container. Use ``sudo(command, user='foo')`` to run them as an unpriviledged user. + Example:: from fabtools.openvz import guest @@ -12,7 +12,7 @@ def read(filename): setup( name='fabtools', - version='0.5', + version='0.5.1', description='Tools for writing awesome Fabric files', long_description=read('README.rst') + '\n' + read('docs/CHANGELOG.rst'), author='Ronan Amicel', |