Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
Cito committed Apr 19, 2020
1 parent fe464c3 commit d648ea7
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/about.txt
Expand Up @@ -36,7 +36,7 @@ on the PyGres95 code written by Pascal Andre (andre@chimay.via.ecp.fr).
D'Arcy (darcy@druid.net) renamed it to PyGreSQL starting with
version 2.0 and serves as the "BDFL" of PyGreSQL.

The current version PyGreSQL 5.1.1 needs PostgreSQL 9.0 to 9.6 or 10 to 12, and
The current version PyGreSQL 5.1.2 needs PostgreSQL 9.0 to 9.6 or 10 to 12, and
Python 2.6, 2.7 or 3.3 to 3.8. If you need to support older PostgreSQL versions
or older Python 2.x versions, you can resort to the PyGreSQL 4.x versions that
still support them.
4 changes: 2 additions & 2 deletions docs/announce.rst
Expand Up @@ -3,10 +3,10 @@ PyGreSQL Announcements
======================

---------------------------------
Release of PyGreSQL version 5.1.1
Release of PyGreSQL version 5.1.2
---------------------------------

Release 5.1.1 of PyGreSQL.
Release 5.1.2 of PyGreSQL.

It is available at: https://pypi.org/project/PyGreSQL/.

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -70,7 +70,7 @@
# The short X.Y version.
version = '5.1'
# The full version, including alpha/beta/rc tags.
release = '5.1.1'
release = '5.1.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
5 changes: 3 additions & 2 deletions docs/contents/changelog.rst
@@ -1,11 +1,12 @@
ChangeLog
=========

Version 5.1.2 (...)
-------------------
Version 5.1.2 (2020-04-19)
--------------------------
- Improved handling of build_ext options for disabling certain features.
- Avoid compiler warnings with proper casts. This should solve problems
when building PyGreSQL on MaCOS.
- Export only the public API on wildcard imports

Version 5.1.1 (2020-03-05)
--------------------------
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -6,7 +6,7 @@
#
# Please see the LICENSE.TXT file for specific restrictions.

"""Setup script for PyGreSQL version 5.1.1
"""Setup script for PyGreSQL version 5.1.2
PyGreSQL is an open-source Python module that interfaces to a
PostgreSQL database. It embeds the PostgreSQL query library to allow
Expand Down Expand Up @@ -52,7 +52,7 @@
from distutils.ccompiler import get_default_compiler
from distutils.sysconfig import get_python_inc, get_python_lib

version = '5.1.1'
version = '5.1.2'

if (not (2, 6) <= sys.version_info[:2] < (3, 0)
and not (3, 3) <= sys.version_info[:2] < (4, 0)):
Expand Down

0 comments on commit d648ea7

Please sign in to comment.