Skip to content

Commit

Permalink
Bump version to 2.2.2 (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
brien-givens authored Sep 12, 2018
1 parent 0875942 commit 0eef033
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 8 deletions.
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
env
env2
__pycache__
build
dist
distribute-*
docs/_build
env
env2
*.egg-info
.python-version
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
postgres is a high-value abstraction over psycopg2

https://postgres-py.readthedocs.org/
[Read the Docs](https://postgres-py.readthedocs.org)
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
# The short X.Y version.
version = '2.2'
# The full version, including alpha/beta/rc tags.
release = '2.2.1-dev'
release = '2.2.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion postgres/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@
from psycopg2.pool import ThreadedConnectionPool as ConnectionPool


__version__ = '2.2.1-dev'
__version__ = '2.2.2'


# A Helper
Expand Down
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@

setup( name='postgres'
, author='Gratipay, LLC'
, author_email='chad@idelic.com'
, description="postgres is a high-value abstraction over psycopg2."
, long_description=open('README.md').read()
, long_description_content_type='text/markdown'
, url='https://postgres-py.readthedocs.org'
, version='2.2.1-dev'
, version='2.2.2'
, packages=find_packages()
, install_requires=['psycopg2-binary >= 2.7.5']
, classifiers=[
Expand All @@ -23,5 +26,5 @@
'Programming Language :: SQL',
'Topic :: Database :: Front-Ends',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)
]
)

0 comments on commit 0eef033

Please sign in to comment.