Skip to content

Commit 5dd104a

Browse files
committed
Ready to tag for 1.0.0.
Ready to tag for 1.0.0.
1 parent e9adacb commit 5dd104a

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

README.rst

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,17 @@ PyPrintful
55
`PyPrintful <https://github.com/559labs/PyPrintful>`_ is a simple Python3-compatible interface to the `Printful API
66
<http://api.printful.com/>`_.
77

8-
Quick Start
9-
-----------
8+
Installation
9+
------------
1010

1111
1. Install the package with: `pip3 install pyprintful`
1212

1313
Documentation
1414
-------------
1515

16-
Documentation is available at <http://pyprintful.readthedocs.io/>.
16+
- Documentation is available at `<http://pyprintful.readthedocs.io>`_.
17+
- Report all bugs at `<https://github.com/559Labs/pyPrintful/issues>`_.
18+
1719

1820
.. image:: https://readthedocs.org/projects/pyprintful/badge/?version=latest
1921
:target: http://pyprintful.readthedocs.io/en/latest/?badge=latest

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@
5959
# built documents.
6060

6161
# The short X.Y version.
62-
version = '1.0.0a6'
62+
version = '1.0.0'
6363
# The full version, including alpha/beta/rc tags.
64-
release = '1.0.0a6'
64+
release = '1.0.0'
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.

pyPrintful/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class pyPrintful:
1616
:returns: A stateful object with an authenticated connection.
1717
"""
1818

19-
VERSION = "1.0.0a6"
19+
VERSION = "1.0.0"
2020

2121
_store = {
2222
'base_url': 'https://api.printful.com/',

setup.py

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

1010
setup(
1111
name='PyPrintful',
12-
version='1.0.0a6',
12+
version='1.0.0',
1313
description='A Python3 wrapper for the Printful.com API.',
1414
long_description=long_description,
1515
url='https://github.com/559Labs/pyPrintful',
1616
author='559 Labs',
1717
author_email='hello@559labs.com',
1818
license='Apache',
1919
classifiers=[
20-
'Development Status :: 3 - Alpha',
20+
'Development Status :: 5 - Production/Stable',
2121
'Environment :: Console',
2222
'Framework :: Django',
2323
'Framework :: Django :: 1.10',

0 commit comments

Comments
 (0)