Skip to content

Commit

Permalink
Updated crate version
Browse files Browse the repository at this point in the history
Signed-off-by: Bogdan Mircea <mirceapetrebogdan@gmail.com>
  • Loading branch information
bobozaur committed Nov 20, 2023
1 parent a448b30 commit 6681cc1
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 10 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ 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/).

## [0.7.2] - 2023-11-20

### Added

- [#19](https://github.com/bobozaur/sqlx-exasol/pull/19): Update to sqlx `0.7.2`.

### Fixed

- [#19](https://github.com/bobozaur/sqlx-exasol/pull/19): README fixes.

## [0.7.1-alpha-4] - 2023-10-26

### Added
Expand Down
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sqlx-exasol"
version = "0.7.1-alpha-4"
version = "0.7.2"
edition = "2021"
authors = ["bobozaur"]
description = "Exasol driver for the SQLx framework."
Expand Down Expand Up @@ -44,9 +44,9 @@ futures-core = "0.3.28"
serde_json = { version = "1.0.100", features = ["raw_value"] }
serde = { version = "1.0.169", features = ["derive"] }
pin-project = "1.1.2"
lru = "0.11.0"
sqlx-core = "=0.7.1"
sqlx-macros-core = "=0.7.1"
lru = "0.12.0"
sqlx-core = "0.7.2"
sqlx-macros-core = "0.7.2"
tracing = { version = "0.1.37", features = ["log"] }
arrayvec = "0.7.4"
rcgen = { version = "0.11.1", optional = true }
Expand All @@ -70,7 +70,7 @@ rustls = { version = "0.21", default-features = false, features = [
native-tls = { version = "0.2.10", optional = true }

[dev-dependencies]
sqlx = { version = "=0.7.1", features = [
sqlx = { version = "0.7.2", features = [
"runtime-tokio",
"tls-native-tls",
"migrate",
Expand Down
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,12 @@ Inspired by [Py-Exasol](https://github.com/exasol/pyexasol) and based on the (no
**MSRV**: `1.70`

## Note
>The driver is currently in its `alpha` stage. This will change when it's seen some usage and seems mature enough to be declared **stable**.
>
> For simplicity, the crate's version resembles the `sqlx` version it is based on so that managing dependencies is simpler.
>The crate's version resembles the `sqlx` version it is based on so that managing dependencies is simpler.
>
> 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.1"
> sqlx-exasol = "=0.7.1-alpha-4"
> sqlx = "=0.7.2"
> sqlx-exasol = "=0.7.2"
> ```
Expand Down

0 comments on commit 6681cc1

Please sign in to comment.