Skip to content

Commit

Permalink
bump version to 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pacman82 committed Sep 28, 2023
1 parent bf11692 commit ea2a887
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 2.1.0

It is now better possible to use `odbc-api` with multithreading in completly safe code.

* `Connection` is now `Send`.
* `StatementConnection` is now `Send`.

According to the standard this is guaranteed to be safe. By now this has also worked in practice long enough and with enough different drivers, that this can be considered safe, not only by the ODBC standard, but also in practice.

## 2.0.0

* Variant `Error::TooLargeValueForBuffer` now has a member `indicator`, indicating the size of the complete value in the DBMS. This has been introduced to help users decide how to pick a maximum string size in bulk fetches, in the presence of large variadic columns.
Expand Down
2 changes: 1 addition & 1 deletion odbc-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "odbc-api"
version = "2.0.0"
version = "2.1.0"
authors = ["Markus Klein"]
edition = "2021"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion odbcsv/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ readme = "Readme.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
odbc-api = { version = "2.0.0", path = "../odbc-api" }
odbc-api = { version = "2.1.0", path = "../odbc-api" }
csv = "1.2.2"
anyhow = "1.0.75"
stderrlog = "0.5.4"
Expand Down

0 comments on commit ea2a887

Please sign in to comment.