Skip to content
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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased
## [0.9.1] - 2026-01-22

### Added

Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
members = [".", "sqlx-exasol-cli", "sqlx-exasol-impl", "sqlx-exasol-macros"]

[workspace.package]
version = "0.9.0"
version = "0.9.1"
license = "MIT OR Apache-2.0"
edition = "2024"
rust-version = "1.86.0"
Expand Down Expand Up @@ -101,9 +101,9 @@ etl = ["sqlx-exasol-impl/etl"]

[workspace.dependencies]
# Internal
sqlx-exasol = { version = "0.9.0", path = "." }
sqlx-exasol-macros = { version = "0.9.0", path = "sqlx-exasol-macros" }
sqlx-exasol-impl = { version = "0.9.0", path = "sqlx-exasol-impl" }
sqlx-exasol = { version = "0.9.1", path = "." }
sqlx-exasol-macros = { version = "0.9.1", path = "sqlx-exasol-macros" }
sqlx-exasol-impl = { version = "0.9.1", path = "sqlx-exasol-impl" }

# External
arrayvec = { version = "0.7", default-features = false }
Expand Down
8 changes: 3 additions & 5 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
#![doc = include_str!("lib.md")]

/// Ain't nobody got time to track what needs to be re-exported from `sqlx` so I'll just do a
/// glob re-export and override some things. Ideally a single module containing all the
/// re-exports that an external driver should have should be made in `sqlx-core`.
pub use sqlx_a_orig::*;
pub use sqlx_exasol_impl::*;

/// Prevent re-exporting other drivers if used alongside `sqlx`.
mod postgres {}
mod sqlite {}
mod mysql {}

pub mod any {
pub use sqlx_a_orig::any::*;
pub use sqlx_exasol_impl::any::DRIVER;
Expand Down