From 0bfffe99b3572a6181415da5c123d374fcb32832 Mon Sep 17 00:00:00 2001 From: Bogdan Mircea Date: Fri, 15 Mar 2024 10:06:54 +0200 Subject: [PATCH] Update deps and crate version --- CHANGELOG.md | 2 +- Cargo.toml | 12 ++++++------ README.md | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 36eaf7e..45eaba8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,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.7.4] - 2024-03-15 ### Added - [#25](https://github.com/bobozaur/sqlx-exasol/pull/25): ETL module refactor based on `hyper`. diff --git a/Cargo.toml b/Cargo.toml index 749596d..7a537ca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sqlx-exasol" -version = "0.7.3" +version = "0.7.4" edition = "2021" authors = ["bobozaur"] description = "Exasol driver for the SQLx framework." @@ -39,11 +39,11 @@ etl_native_tls = ["dep:native-tls", "dep:rcgen", "etl"] [dependencies] rand = "0.8.5" -base64 = "0.21.2" +base64 = "0.22.0" thiserror = "1.0.30" url = "2.2.2" rsa = "0.9.2" -async-tungstenite = "0.24.0" +async-tungstenite = "0.25.0" futures-io = "0.3.28" futures-util = "0.3.28" futures-core = "0.3.28" @@ -51,8 +51,8 @@ serde_json = { version = "1.0.100", features = ["raw_value"] } serde = { version = "1.0.169", features = ["derive"] } pin-project = "1.1.2" lru = "0.12.0" -sqlx-core = "0.7.3" -sqlx-macros-core = "0.7.3" +sqlx-core = "0.7.4" +sqlx-macros-core = "0.7.4" tracing = { version = "0.1.37", features = ["log"] } arrayvec = "0.7.4" rcgen = { version = "0.12.0", optional = true } @@ -81,7 +81,7 @@ bytes = { version = "1.5", optional = true } futures-channel = { version = "0.3.30", optional = true } [dev-dependencies] -sqlx = { version = "0.7.3", features = [ +sqlx = { version = "0.7.4", features = [ "runtime-tokio", "tls-native-tls", "migrate", diff --git a/README.md b/README.md index d1e1fc9..789c178 100644 --- a/README.md +++ b/README.md @@ -12,8 +12,8 @@ Inspired by [Py-Exasol](https://github.com/exasol/pyexasol) and based on the (no > > With that in mind, please favor using a fixed version of `sqlx` and `sqlx-exasol` in `Cargo.toml` to avoid issues, such as: > ```toml -> sqlx = "=0.7.3" -> sqlx-exasol = "=0.7.3" +> sqlx = "=0.7.4" +> sqlx-exasol = "=0.7.4" > ```