Skip to content
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.

Commit

Permalink
Bump to 0.9.9.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Brandon Schneider committed Sep 30, 2017
1 parent 9f10d11 commit 01db544
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 32 deletions.
50 changes: 20 additions & 30 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
]
extensions = []

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
Expand Down Expand Up @@ -58,9 +57,9 @@
# built documents.
#
# The short X.Y version.
version = u'0.9.9.2rc'
version = u'0.9.9.2'
# The full version, including alpha/beta/rc tags.
release = u'0.9.9.2 RC'
release = u'0.9.9.2 09/30/2017'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down Expand Up @@ -114,7 +113,6 @@
# If true, `todo` and `todoList` produce output, else they produce nothing.
todo_include_todos = False


# -- Options for HTML output ----------------------------------------------

# The theme to use for HTML and HTML Help pages. See the documentation for
Expand All @@ -126,17 +124,15 @@
# further. For a list of options available for each theme, see the
# documentation.
#
html_theme_options = {
'headerbg':'#555 top left repeat-x'
}
html_theme_options = {'headerbg': '#555 top left repeat-x'}

# Add any paths that contain custom themes here, relative to this directory.
# html_theme_path = []

# The name for this set of Sphinx documents.
# "<project> v<release> documentation" by default.
#
# html_title = u'iocage v0.9.9.2 RC'
# html_title = u'iocage v0.9.9.2'

# A shorter title for the navigation bar. Default is the same as html_title.
#
Expand Down Expand Up @@ -241,21 +237,21 @@
# -- Options for LaTeX output ---------------------------------------------

latex_elements = {
# The paper size ('letterpaper' or 'a4paper').
#
# 'papersize': 'letterpaper',
# The paper size ('letterpaper' or 'a4paper').
#
# 'papersize': 'letterpaper',

# The font size ('10pt', '11pt' or '12pt').
#
# 'pointsize': '10pt',
# The font size ('10pt', '11pt' or '12pt').
#
# 'pointsize': '10pt',

# Additional stuff for the LaTeX preamble.
#
# 'preamble': '',
# Additional stuff for the LaTeX preamble.
#
# 'preamble': '',

# Latex figure (float) alignment
#
# 'figure_align': 'htbp',
# Latex figure (float) alignment
#
# 'figure_align': 'htbp',
}

# Grouping the document tree into LaTeX files. List of tuples
Expand Down Expand Up @@ -298,30 +294,24 @@
#
# latex_domain_indices = True


# -- Options for manual page output ---------------------------------------

# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
(master_doc, 'iocage', u'iocage Documentation',
[author], 1)
]
man_pages = [(master_doc, 'iocage', u'iocage Documentation', [author], 1)]

# If true, show URL addresses after external links.
#
# man_show_urls = False


# -- Options for Texinfo output -------------------------------------------

# Grouping the document tree into Texinfo files. List of tuples
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'iocage', u'iocage Documentation',
author, 'iocage', 'One line description of project.',
'Miscellaneous'),
(master_doc, 'iocage', u'iocage Documentation', author, 'iocage',
'One line description of project.', 'Miscellaneous'),
]

# Documents to append as an appendix to all manuals.
Expand Down
2 changes: 1 addition & 1 deletion iocage/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def print_version(ctx, param, value):
"""Prints the version and then exits."""
if not value or ctx.resilient_parsing:
return
print("Version\t0.9.9.2 RC")
print("Version\t0.9.9.2 09/30/2017")
sys.exit()


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
exit("Only Python 3.6 and higher is supported.")

setup(name='iocage',
version='0.9.9.2rc',
version='0.9.9.2',
description='A jail manager that uses ZFS.',
author='iocage Contributors',
author_email='https://groups.google.com/forum/#!forum/iocage',
Expand Down

0 comments on commit 01db544

Please sign in to comment.