Skip to content

Commit

Permalink
Tag version 1.0.0; #11
Browse files Browse the repository at this point in the history
  • Loading branch information
chadwhitacre committed Aug 8, 2013
1 parent 754f79f commit eb799b4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
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.readthedocs.org/
https://postgres-py.readthedocs.org/
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
# built documents.
#
# The short X.Y version.
version = '0.0'
version = '1.0'
# The full version, including alpha/beta/rc tags.
release = '0.0.0'
release = '1.0.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
3 changes: 3 additions & 0 deletions postgres.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,9 @@
from psycopg2.pool import ThreadedConnectionPool as ConnectionPool


__version__ = '1.0.0'


# A Helper
# ========
# Heroku gives us an URL, psycopg2 wants a DSN. Convert!
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
from setuptools import setup

setup( name='postgres'
, author='Gittip, LLC'
, description="postgres is a high-value abstraction over psycopg2."
, version='0.0.0'
, url='https://postgres-py.readthedocs.org'
, version='1.0.0'
, py_modules=['postgres']
, install_requires=['psycopg2 >= 2.0.0']
)

0 comments on commit eb799b4

Please sign in to comment.