v0.5.0
What's Changed
- fix: change read cert to async by @everpcpc in #175
- feat: send write progress by @sundy-li in #174
- feat(core): set custom request UA for client by @everpcpc in #176
- chore: bump version 0.5.0 by @everpcpc in #177
Breaking change
Connection
in rust driver is now wrapped by Client
, and getting connection is changed to async. The new usage is:
let client = Client::new(dsn);
let conn = client.get_conn().await.unwrap();
Full Changelog: v0.4.7...v0.5.0