Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare release 0.26.0 #147

Merged
merged 1 commit into from
Jul 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,19 @@

## [Unreleased]

## [0.26.0] - 2024-07-04

- Added dbapi2 compliant driver interface `exasol.driver.websocket` ontop of pyexasol
- Switched packaging and project workflow to poetry

⚠️ Note:

This driver facade should only be used if one is certain that using the dbapi2 is the right solution for their scenario, taking all implications into account. For more details on why and who should avoid using dbapi2, please refer to the [DBAPI2 compatibility section](/docs/DBAPI_COMPAT.md) in our documentation.

- Droped support for python 3.7
- Droped support for Exasol 6.x
- Droped support for Exasol 7.0.x
- Relocked dependencies (Internal)
- Switched packaging and project workflow to poetry (internal)

## [0.25.2] - 2023-03-14

Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ description = "Exasol python driver with extra features"

packages = [
{ include = "pyexasol" },
{ include = "pyexasol_utils" }
{ include = "pyexasol_utils" },
{ include = "exasol" }
]
authors = [
"Vitaly Markov <wild.desu@gmail.com>",
Expand Down
Loading