Skip to content

Commit

Permalink
bump version to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pacman82 committed Sep 14, 2023
1 parent f1b9527 commit a22ecbc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 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.

3 changes: 2 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Changelog

## (next)
## 1.0.0

* Introduced `CursorRow::get_wide_text` in order to fetch large UTF-16 values into a buffer.
* The `IntoParameter` implementation for `str` slices and `Strings` will now be converting them to `VarWCharBox` if the `narrow` compile time feature is **not** activated. This has been done in order to allow for easier writing of portable code between Windows and non-Windows platforms. Usually you would like to activate the `narrow` feature on non-windows platform there a UTF-8 default locale can be assumed. On Windows you want utilize UTF-16 encoding since it is the only reliable way to to transfer non ASCII characters independent from the systems locale. With this change on both platforms one can now simply write:

```rust
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 = "0.57.1"
version = "1.0.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 = "0.57.0", path = "../odbc-api" }
odbc-api = { version = "1.0.0", path = "../odbc-api" }
csv = "1.2.2"
anyhow = "1.0.75"
stderrlog = "0.5.4"
Expand Down

0 comments on commit a22ecbc

Please sign in to comment.