Skip to content

Commit eb799b4

Browse files
committed
Tag version 1.0.0; #11
1 parent 754f79f commit eb799b4

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

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.readthedocs.org/
3+
https://postgres-py.readthedocs.org/

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
# built documents.
4949
#
5050
# The short X.Y version.
51-
version = '0.0'
51+
version = '1.0'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '0.0.0'
53+
release = '1.0.0'
5454

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

postgres.py

+3
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,9 @@
166166
from psycopg2.pool import ThreadedConnectionPool as ConnectionPool
167167

168168

169+
__version__ = '1.0.0'
170+
171+
169172
# A Helper
170173
# ========
171174
# Heroku gives us an URL, psycopg2 wants a DSN. Convert!

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
from setuptools import setup
22

33
setup( name='postgres'
4+
, author='Gittip, LLC'
45
, description="postgres is a high-value abstraction over psycopg2."
5-
, version='0.0.0'
6+
, url='https://postgres-py.readthedocs.org'
7+
, version='1.0.0'
68
, py_modules=['postgres']
79
, install_requires=['psycopg2 >= 2.0.0']
810
)

0 commit comments

Comments
 (0)