Skip to content

Commit

Permalink
Preparations for the release of turbodbc 2.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MathMagique committed Mar 22, 2018
1 parent e03205c commit 1d0228b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
17 changes: 11 additions & 6 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,22 @@ Version history / changelog

From version 2.0.0, turbodbc adapts semantic versioning.

Version 2.6.0 (UNRELEASED)
--------------------------
Version 2.6.0
-------------

* Fixed a bug that lead to ``handle limit exceeded`` error messages when
``Cursor`` objects were not closed *manually*. With this fix, cursors
are garbage collected as expected.
* Can be build against pyarrow 0.9.0.
* Added support for ``with`` blocks for ``Cursor`` and ``Connection``
objects. This makes turbodbc conform with
`PEP 343 <https://www.python.org/dev/peps/pep-0343/>`_
(thanks @AtomBaf)
* Added new keyword argument ``force_extra_capacity_for_unicode`` to
``make_options()``. If set to ``True``, memory allocation is modified
to operate under the assumption that the database driver reports field
lengths in characters, rather than code units (thanks @yaxxie).
* Updated Apache Arrow support to work with both versions 0.8.0 and 0.9.0
(thanks @pacman82)
* Fixed a bug that led to ``handle limit exceeded`` error messages when
``Cursor`` objects were not closed *manually*. With this fix, cursors
are garbage collected as expected.

Version 2.5.0
-------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def get_extension_modules():


setup(name = 'turbodbc',
version = '2.5.1',
version = '2.6.0',
description = 'turbodbc is a Python DB API 2.0 compatible ODBC driver',
include_package_data = True,
url = 'https://github.com/blue-yonder/turbodbc',
Expand Down

0 comments on commit 1d0228b

Please sign in to comment.