Skip to content

Commit

Permalink
Prepare release 3.2.1 (#193)
Browse files Browse the repository at this point in the history
* Bump version to 3.2.1
* Remove warning about disabled turbodbc support in README
* Update CHANGELOG.rst

Co-authored-by: Christoph Kuhnke <[email protected]>
Nicoretti and ckunki authored Aug 12, 2022
1 parent da21882 commit a444456
Showing 9 changed files with 123 additions and 277 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,29 @@

.. _changelog-3.2.1:

3.2.1 — 2022-08-12
==================

✨ Added
-------
- Added turbodbc support
* Re-enabled with new minimum base version 4.5.4
- Added additional information to README
* License information (badge)
* Code formatter(s) in use (black, isort)
* Linting score of the project

🔧 Changed
---------
- Changed changelog format
- Changelog now can be found in the file CHANGELOG.rst
- Reworked and restructured project documentation

🗑️ Removed
----------
- Removed markdown based changelog


.. _changelog-3.1.1:

3.1.1 — 2022-07-21
9 changes: 0 additions & 9 deletions README.rst
Original file line number Diff line number Diff line change
@@ -63,15 +63,6 @@ On Linux/Unix like systems you need:
Turbodbc support
````````````````

.. attention::

This feature currently is disabled/unsupported, see:

* `sqlalchemy-exasol/#146 <https://github.com/exasol/sqlalchemy-exasol/issues/146>`_
* `turbodbc/#358 <https://github.com/blue-yonder/turbodbc/issues/358>`_



- You can use Turbodbc with sqlalchemy_exasol if you use a python version >= 3.8.
- Multi row update is not supported, see
`test/test_update.py <test/test_update.py>`_ for an example

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

307 changes: 96 additions & 211 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "sqlalchemy_exasol"
version = "3.2.0"
version = "3.2.1"
description = "EXASOL dialect for SQLAlchemy"
readme = "README.rst"
authors = [
2 changes: 1 addition & 1 deletion sqlalchemy_exasol/version.py
Original file line number Diff line number Diff line change
@@ -4,6 +4,6 @@

MAJOR = 3
MINOR = 2
PATCH = 0
PATCH = 1

VERSION = f"{MAJOR}.{MINOR}.{PATCH}"

0 comments on commit a444456

Please sign in to comment.