Skip to content

Commit 0eef033

Browse files
authored
Bump version to 2.2.2 (#66)
1 parent 0875942 commit 0eef033

File tree

5 files changed

+14
-8
lines changed

5 files changed

+14
-8
lines changed

.gitignore

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
env
2-
env2
1+
__pycache__
2+
build
33
dist
44
distribute-*
55
docs/_build
6+
env
7+
env2
68
*.egg-info
9+
.python-version

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
postgres is a high-value abstraction over psycopg2
22

3-
https://postgres-py.readthedocs.org/
3+
[Read the Docs](https://postgres-py.readthedocs.org)

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
# The short X.Y version.
5151
version = '2.2'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '2.2.1-dev'
53+
release = '2.2.2'
5454

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

postgres/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@
189189
from psycopg2.pool import ThreadedConnectionPool as ConnectionPool
190190

191191

192-
__version__ = '2.2.1-dev'
192+
__version__ = '2.2.2'
193193

194194

195195
# A Helper

setup.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,12 @@
44

55
setup( name='postgres'
66
, author='Gratipay, LLC'
7+
, author_email='[email protected]'
78
, description="postgres is a high-value abstraction over psycopg2."
9+
, long_description=open('README.md').read()
10+
, long_description_content_type='text/markdown'
811
, url='https://postgres-py.readthedocs.org'
9-
, version='2.2.1-dev'
12+
, version='2.2.2'
1013
, packages=find_packages()
1114
, install_requires=['psycopg2-binary >= 2.7.5']
1215
, classifiers=[
@@ -23,5 +26,5 @@
2326
'Programming Language :: SQL',
2427
'Topic :: Database :: Front-Ends',
2528
'Topic :: Software Development :: Libraries :: Python Modules',
26-
],
27-
)
29+
]
30+
)

0 commit comments

Comments
 (0)