Skip to content

Commit

Permalink
chore: Explain wide feature in changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
pacman82 committed Nov 25, 2024
1 parent 6503a2d commit 70d2aa2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
# Changelog

## [13.1.0](https://github.com/pacman82/arrow-odbc/compare/v13.0.2...v13.1.0) - 2024-11-24
## [14.0.0](https://github.com/pacman82/arrow-odbc/compare/v13.0.2...v14.0.0) - 2024-11-25

### Added

- wide feature flag added. This supports wide function calls on non-windows systems.
- You can now compile with using the wide (i.e. UTF-16) character set versions of ODBC functions calls on non-windows platforms by specifying the `wide` feature. Similarly you can now complie using the narrow character set on windows platforms by specifying the `narrow` feature. The default remains `wide` on windows and `narrow` on non-windows targets. This required updating using `odbc-api 10.0.0`. The only thing thing changing however from `odbc-api` 9 to 10 are the default compilation of feature flags, so your code should just continue working.

- [**breaking**] Update odbc-api `>= 9, < 10` -> `>= 10, < 11`

## [13.0.2](https://github.com/pacman82/arrow-odbc/compare/v13.0.1...v13.0.2) - 2024-11-24

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "arrow-odbc"
version = "13.1.0"
version = "14.0.0"
authors = ["Markus Klein"]
edition = "2021"
license = "MIT"
Expand Down

0 comments on commit 70d2aa2

Please sign in to comment.