Skip to content

Commit

Permalink
Bump version: 0.1.2 → 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosp420 committed Sep 29, 2015
1 parent 8e05615 commit 6705c40
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.2
current_version = 0.2.0
commit = True
tag = True

Expand Down
28 changes: 13 additions & 15 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@
# built documents.
#
# The short X.Y version.
version = '0.1.2'
version = '0.2.0'
# The full version, including alpha/beta/rc tags.
release = '0.1.2'
release = version

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down Expand Up @@ -208,25 +208,24 @@
# -- 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
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'SeqRecordExpanded.tex', 'SeqRecordExpanded Documentation',
'Carlos Peña', 'manual'),
(master_doc, 'SeqRecordExpanded.tex', 'SeqRecordExpanded Documentation', 'Carlos Peña', 'manual'),
]

# The name of an image file (relative to this directory) to place at the top of
Expand Down Expand Up @@ -269,9 +268,8 @@
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'SeqRecordExpanded', 'SeqRecordExpanded Documentation',
author, 'SeqRecordExpanded', 'One line description of project.',
'Miscellaneous'),
(master_doc, 'SeqRecordExpanded', 'SeqRecordExpanded Documentation',
author, 'SeqRecordExpanded', 'One line description of project.', 'Miscellaneous'),
]

# Documents to append as an appendix to all manuals.
Expand Down
2 changes: 1 addition & 1 deletion seqrecord_expanded/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
from .seqrecord import SeqRecordExpanded


__version__ = '0.1.2'
__version__ = '0.2.0'
__author__ = 'Carlos Peña <mycalesis@gmail.com>'
__all__ = []
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def read(*names, **kwargs):

setuptools.setup(
name="seqrecord-expanded",
version="0.1.2",
version="0.2.0",
license="BSD",
url="https://github.com/carlosp420/seqrecord-expanded",

Expand Down

0 comments on commit 6705c40

Please sign in to comment.