Skip to content

Commit d9a9c86

Browse files
authored
Update version for 1.0.0 (#6)
1 parent 4e1231a commit d9a9c86

File tree

4 files changed

+38
-35
lines changed

4 files changed

+38
-35
lines changed

CHANGES

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
Changes
22
=======
33

4-
1.0a1 (2018-09-20)
4+
1.0.0 (2019-07-31)
55
------------------
66

7-
Initial release.
7+
First production release. There have been no changes since 1.0a1.
88

9+
1.0a1 (2018-09-20)
10+
------------------
911

12+
Initial release.

docs/conf.py

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,20 @@
1414
#
1515
import os
1616
import sys
17-
sys.path.insert(0, os.path.abspath('..'))
17+
18+
sys.path.insert(0, os.path.abspath(".."))
1819

1920

2021
# -- Project information -----------------------------------------------------
2122

22-
project = 'jsonseq'
23-
copyright = '2018, Sean Gillies'
24-
author = 'Sean Gillies'
23+
project = "jsonseq"
24+
copyright = "2018, Sean Gillies"
25+
author = "Sean Gillies"
2526

2627
# The short X.Y version
27-
version = ''
28+
version = ""
2829
# The full version, including alpha/beta/rc tags
29-
release = '1.0a1'
30+
release = "1.0a1"
3031

3132

3233
# -- General configuration ---------------------------------------------------
@@ -39,23 +40,23 @@
3940
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
4041
# ones.
4142
extensions = [
42-
'sphinx.ext.autodoc',
43-
'sphinx.ext.autosummary',
44-
'sphinx.ext.viewcode',
45-
'numpydoc',
43+
"sphinx.ext.autodoc",
44+
"sphinx.ext.autosummary",
45+
"sphinx.ext.viewcode",
46+
"numpydoc",
4647
]
4748

4849
# Add any paths that contain templates here, relative to this directory.
49-
templates_path = ['_templates']
50+
templates_path = ["_templates"]
5051

5152
# The suffix(es) of source filenames.
5253
# You can specify multiple suffix as a list of string:
5354
#
5455
# source_suffix = ['.rst', '.md']
55-
source_suffix = '.rst'
56+
source_suffix = ".rst"
5657

5758
# The master toctree document.
58-
master_doc = 'index'
59+
master_doc = "index"
5960

6061
# The language for content autogenerated by Sphinx. Refer to documentation
6162
# for a list of supported languages.
@@ -67,7 +68,7 @@
6768
# List of patterns, relative to source directory, that match files and
6869
# directories to ignore when looking for source files.
6970
# This pattern also affects html_static_path and html_extra_path.
70-
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
71+
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
7172

7273
# The name of the Pygments (syntax highlighting) style to use.
7374
pygments_style = None
@@ -78,7 +79,7 @@
7879
# The theme to use for HTML and HTML Help pages. See the documentation for
7980
# a list of builtin themes.
8081
#
81-
html_theme = 'alabaster'
82+
html_theme = "alabaster"
8283

8384
# Theme options are theme-specific and customize the look and feel of a theme
8485
# further. For a list of options available for each theme, see the
@@ -89,7 +90,7 @@
8990
# Add any paths that contain custom static files (such as style sheets) here,
9091
# relative to this directory. They are copied after the builtin static files,
9192
# so a file named "default.css" will overwrite the builtin "default.css".
92-
html_static_path = ['_static']
93+
html_static_path = ["_static"]
9394

9495
# Custom sidebar templates, must be a dictionary that maps document names
9596
# to template names.
@@ -105,7 +106,7 @@
105106
# -- Options for HTMLHelp output ---------------------------------------------
106107

107108
# Output file base name for HTML help builder.
108-
htmlhelp_basename = 'jsonseqdoc'
109+
htmlhelp_basename = "jsonseqdoc"
109110

110111

111112
# -- Options for LaTeX output ------------------------------------------------
@@ -114,15 +115,12 @@
114115
# The paper size ('letterpaper' or 'a4paper').
115116
#
116117
# 'papersize': 'letterpaper',
117-
118118
# The font size ('10pt', '11pt' or '12pt').
119119
#
120120
# 'pointsize': '10pt',
121-
122121
# Additional stuff for the LaTeX preamble.
123122
#
124123
# 'preamble': '',
125-
126124
# Latex figure (float) alignment
127125
#
128126
# 'figure_align': 'htbp',
@@ -132,19 +130,15 @@
132130
# (source start file, target name, title,
133131
# author, documentclass [howto, manual, or own class]).
134132
latex_documents = [
135-
(master_doc, 'jsonseq.tex', 'jsonseq Documentation',
136-
'Sean Gillies', 'manual'),
133+
(master_doc, "jsonseq.tex", "jsonseq Documentation", "Sean Gillies", "manual")
137134
]
138135

139136

140137
# -- Options for manual page output ------------------------------------------
141138

142139
# One entry per manual page. List of tuples
143140
# (source start file, name, description, authors, manual section).
144-
man_pages = [
145-
(master_doc, 'jsonseq', 'jsonseq Documentation',
146-
[author], 1)
147-
]
141+
man_pages = [(master_doc, "jsonseq", "jsonseq Documentation", [author], 1)]
148142

149143

150144
# -- Options for Texinfo output ----------------------------------------------
@@ -153,9 +147,15 @@
153147
# (source start file, target name, title, author,
154148
# dir menu entry, description, category)
155149
texinfo_documents = [
156-
(master_doc, 'jsonseq', 'jsonseq Documentation',
157-
author, 'jsonseq', 'One line description of project.',
158-
'Miscellaneous'),
150+
(
151+
master_doc,
152+
"jsonseq",
153+
"jsonseq Documentation",
154+
author,
155+
"jsonseq",
156+
"One line description of project.",
157+
"Miscellaneous",
158+
)
159159
]
160160

161161

@@ -174,7 +174,7 @@
174174
# epub_uid = ''
175175

176176
# A list of files that should not be packed into the epub file.
177-
epub_exclude_files = ['search.html']
177+
epub_exclude_files = ["search.html"]
178178

179179

180180
# -- Extension configuration -------------------------------------------------

jsonseq/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""The jsonseq package."""
22

3-
__version__ = "1.0a1"
3+
__version__ = "1.0.0"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212

1313
setup(
1414
name="jsonseq",
15-
version="1.0a1",
15+
version="1.0.0",
1616
description="Python support for RFC 7464 JSON text sequences",
1717
long_description=long_description,
1818
long_description_content_type="text/markdown",
1919
url="https://github.com/sgillies/jsonseq",
2020
author="Sean Gillies",
2121
author_email="[email protected]",
2222
classifiers=[
23-
"Development Status :: 3 - Alpha",
23+
"Development Status :: 5 - Production/Stable",
2424
"Intended Audience :: Developers",
2525
"License :: OSI Approved :: MIT License",
2626
"Programming Language :: Python :: 3",

0 commit comments

Comments
 (0)