Skip to content

Commit c8ae60e

Browse files
committed
make mssql::Encrypt public
fixes #9
1 parent b1897cb commit c8ae60e

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.6.30
9+
10+
- Make the `Encrypt` enum public in the mssql driver
11+
- Further improve mssql character encoding support, thanks to https://github.com/lovasoa/lcid-to-codepage
12+
813
## 0.6.29
914

1015
- Add support for more character encodings and locales in mssql. Previously, only WINDOWS-1252 was supported.

sqlx-core/src/mssql/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ pub use connection::MssqlConnection;
2424
pub use database::Mssql;
2525
pub use error::MssqlDatabaseError;
2626
pub use options::MssqlConnectOptions;
27+
pub use protocol::pre_login::Encrypt;
2728
pub use query_result::MssqlQueryResult;
2829
pub use row::MssqlRow;
2930
pub use statement::MssqlStatement;

0 commit comments

Comments
 (0)