Skip to content

Commit

Permalink
Version bump 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bsoyka committed Jul 1, 2021
1 parent 4dc8815 commit 85102a4
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
gravify is available on PyPI:

```sh
$ python -m pip install gravify
$ pip install gravify
```

gravify officially supports Python 2.7 & 3.5+.
gravify officially supports Python 3.5+.

## API Reference
See [Read the Docs](https://gravify.readthedocs.io/) for gravify's documentation.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
author = "Ben Soyka"

# The full version, including alpha/beta/rc tags
version = "1.0.0"
release = "1.0.0"
version = "1.1.0"
release = "1.1.0"


# -- General configuration ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ gravify is available on PyPI:

.. code:: console
$ python -m pip install gravify
$ pip install gravify
gravify officially supports Python 2.7 & 3.5+.
gravify officially supports Python 3.5+.

API Reference
-------------
Expand Down
2 changes: 1 addition & 1 deletion gravify/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
else:
from urllib import urlencode, urlopen # pylint: disable=no-name-in-module

__version__ = '1.0.0'
__version__ = '1.1.0'


class Gravatar:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name='gravify',
version='1.0.0',
version='1.1.0',
author='Ben Soyka',
author_email='[email protected]',
description='Simple package to generate Gravatar URLs',
Expand Down

0 comments on commit 85102a4

Please sign in to comment.