diff --git a/CHANGELOG.md b/CHANGELOG.md index 6895f992..5e9880e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index 40cbad3d..9d51419b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" @@ -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 } diff --git a/src/lib.rs b/src/lib.rs index d4be6c38..46406a79 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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;