Skip to content

Commit

Permalink
Release 3.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
phdru committed Feb 24, 2018
1 parent 91b21bf commit 0fd1c21
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 22 deletions.
53 changes: 37 additions & 16 deletions ANNOUNCE.rst
Original file line number Diff line number Diff line change
@@ -1,28 +1,49 @@
Hello!

I'm pleased to announce version 3.6.1a1, the first alpha of the upcoming
release of branch 3.6 of SQLObject.
I'm pleased to announce version 3.6.0, the first stable release of branch
3.6 of SQLObject.

I'm pleased to announce version 3.6.1a2, the second alpha of the upcoming
release of branch 3.6 of SQLObject.

I'm pleased to announce version 3.6.1b1, the first beta of the upcoming
release of branch 3.6 of SQLObject.
What's new in SQLObject
=======================

I'm pleased to announce version 3.6.1rc1, the first release candidate
of the upcoming release of branch 3.6 of SQLObject.
Contributor for this release is Michael S. Root.

I'm pleased to announce version 3.6.0, the first stable release of branch
3.6 of SQLObject.
Minor features
--------------

I'm pleased to announce version 3.6.1, the first bugfix release of branch
3.6 of SQLObject.
* Close cursors after using to free resources immediately
instead of waiting for gc.

Bug fixes
---------

What's new in SQLObject
=======================
* Fix for TypeError using selectBy on a BLOBCol. PR by Michael S. Root.

Drivers
-------

* Extend support for oursql and Python 3 (requires our fork of the driver).

* Fix cursor.arraysize - pymssql doesn't have arraysize.

* Set timeout for ODBC with MSSQL.

* Fix _setAutoCommit for MSSQL.

Documentation
-------------

* Document extras that are available for installation.

Build
-----

* Use ``python_version`` environment marker in ``setup.py`` to make
``install_requires`` and ``extras_require`` declarative. This makes
the universal wheel truly universal.

Contributors for this release are
* Use ``python_requires`` keyword in ``setup.py``.

For a more complete list, please see the news:
http://sqlobject.org/News.html
Expand Down Expand Up @@ -54,7 +75,7 @@ Mailing list:
https://lists.sourceforge.net/mailman/listinfo/sqlobject-discuss

Download:
https://pypi.python.org/pypi/SQLObject/3.6.0a0.dev20171115
https://pypi.python.org/pypi/SQLObject/3.6.0

News and changes:
http://sqlobject.org/News.html
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SQLObject 3.5.0
SQLObject 3.6.0
===============

Thanks for looking at SQLObject. SQLObject is an object-relational
Expand Down
2 changes: 1 addition & 1 deletion devscripts/build-all-docs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ cd "$PROG_DIR" &&
PROG_DIR="`pwd`" &&

cd "$PROG_DIR"/SQLObject &&
build_docs 3.5.0 &&
build_docs 3.6.0 &&
build_docs master devel &&
rm -rf docs/html &&

Expand Down
6 changes: 4 additions & 2 deletions docs/News.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ News
.. contents:: Contents:
:backlinks: none

SQLObject 3.6.0 (master)
========================
SQLObject 3.6.0
===============

Released 24 Feb 2018.

Minor features
--------------
Expand Down
4 changes: 2 additions & 2 deletions sqlobject/__version__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

version = '3.5.0'
version = '3.6.0'
major = 3
minor = 5
minor = 6
micro = 0
release_level = 'final'
serial = 0
Expand Down

0 comments on commit 0fd1c21

Please sign in to comment.