Skip to content

Commit

Permalink
Post-release
Browse files Browse the repository at this point in the history
  • Loading branch information
spoutn1k committed Mar 13, 2024
1 parent 50df76b commit fe53fff
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 21 deletions.
3 changes: 3 additions & 0 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
Changelog
=========

python-ptrace 0.9.10
---------------------------------

python-ptrace 0.9.9 (2024-03-13)
--------------------------------

Expand Down
34 changes: 14 additions & 20 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
# built documents.
#
# The short X.Y version.
version = release = '0.9.9'
version = release = '0.9.10'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down Expand Up @@ -77,7 +77,6 @@
# A list of ignored prefixes for module index sorting.
#modindex_common_prefix = []


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

# The theme to use for HTML and HTML Help pages. See the documentation for
Expand Down Expand Up @@ -157,25 +156,24 @@
# Output file base name for HTML help builder.
htmlhelp_basename = 'python-ptracedoc'


# -- 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': '',
}

# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
('index', 'python-ptrace.tex', u'python-ptrace Documentation',
u'Victor Stinner', 'manual'),
('index', 'python-ptrace.tex', u'python-ptrace Documentation',
u'Victor Stinner', 'manual'),
]

# The name of an image file (relative to this directory) to place at the top of
Expand All @@ -198,29 +196,25 @@
# If false, no module index is generated.
#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 = [
('index', 'python-ptrace', u'python-ptrace Documentation',
[u'Victor Stinner'], 1)
]
man_pages = [('index', 'python-ptrace', u'python-ptrace Documentation',
[u'Victor Stinner'], 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 = [
('index', 'python-ptrace', u'python-ptrace Documentation',
u'Victor Stinner', 'python-ptrace', 'One line description of project.',
'Miscellaneous'),
('index', 'python-ptrace', u'python-ptrace Documentation',
u'Victor Stinner', 'python-ptrace', 'One line description of project.',
'Miscellaneous'),
]

# Documents to append as an appendix to all manuals.
Expand Down
2 changes: 1 addition & 1 deletion ptrace/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PACKAGE = "python-ptrace"
VERSION = (0, 9, 9)
VERSION = (0, 9, 10)
__version__ = '.'.join(map(str, VERSION))
WEBSITE = "http://python-ptrace.readthedocs.io/"
LICENSE = "GNU GPL v2"

0 comments on commit fe53fff

Please sign in to comment.