Prepare v0.3.3

This commit is contained in:
Ryan Leckey 2020-04-01 18:24:08 -07:00
parent 4dc634f8b5
commit e7ace2adc7
5 changed files with 28 additions and 9 deletions

View file

@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## 0.3.3 - 2020-04-01
### Fixed
- [[#214]] Handle percent-encoded usernames in a database URL [[@jamwaffles]]
### Changed
- [[#216]] Mark `Cursor`, `Query`, `QueryAs`, `query::Map`, and `Transaction` as `#[must_use]` [[@Ace4896]]
- [[#213]] Remove matches dependency and use matches macro from std [[@nrjais]]
[#216]: https://github.com/launchbadge/sqlx/pull/216
[#214]: https://github.com/launchbadge/sqlx/pull/214
[#213]: https://github.com/launchbadge/sqlx/pull/213
## 0.3.2 - 2020-03-31
### Fixed
@ -372,3 +388,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[@PoiScript]: https://github.com/PoiScript
[@utter-step]: https://github.com/utter-step
[@sidred]: https://github.com/sidred
[@Ace4896]: https://github.com/Ace4896
[@jamwaffles]: https://github.com/jamwaffles
[@nrjais]: https://github.com/nrjais

6
Cargo.lock generated
View file

@ -1669,7 +1669,7 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
[[package]]
name = "sqlx"
version = "0.3.2"
version = "0.3.3"
dependencies = [
"anyhow",
"async-std",
@ -1689,7 +1689,7 @@ dependencies = [
[[package]]
name = "sqlx-core"
version = "0.3.2"
version = "0.3.3"
dependencies = [
"async-native-tls",
"async-std",
@ -1791,7 +1791,7 @@ dependencies = [
[[package]]
name = "sqlx-macros"
version = "0.3.2"
version = "0.3.3"
dependencies = [
"async-std",
"dotenv",

View file

@ -13,7 +13,7 @@ members = [
[package]
name = "sqlx"
version = "0.3.2"
version = "0.3.3"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/launchbadge/sqlx"
@ -61,8 +61,8 @@ json = [ "sqlx-core/json", "sqlx-macros/json" ]
time = [ "sqlx-core/time", "sqlx-macros/time" ]
[dependencies]
sqlx-core = { version = "0.3.2", path = "sqlx-core", default-features = false }
sqlx-macros = { version = "0.3.2", path = "sqlx-macros", default-features = false, optional = true }
sqlx-core = { version = "0.3.3", path = "sqlx-core", default-features = false }
sqlx-macros = { version = "0.3.3", path = "sqlx-macros", default-features = false, optional = true }
[dev-dependencies]
anyhow = "1.0.26"

View file

@ -1,6 +1,6 @@
[package]
name = "sqlx-core"
version = "0.3.2"
version = "0.3.3"
repository = "https://github.com/launchbadge/sqlx"
description = "Core of SQLx, the rust SQL toolkit. Not intended to be used directly."
license = "MIT OR Apache-2.0"

View file

@ -1,6 +1,6 @@
[package]
name = "sqlx-macros"
version = "0.3.2"
version = "0.3.3"
repository = "https://github.com/launchbadge/sqlx"
description = "Macros for SQLx, the rust SQL toolkit. Not intended to be used directly."
license = "MIT OR Apache-2.0"
@ -40,7 +40,7 @@ tokio = { version = "0.2.13", default-features = false, features = [ "rt-threade
dotenv = { version = "0.15.0", default-features = false }
futures = { version = "0.3.4", default-features = false, features = [ "executor" ] }
proc-macro2 = { version = "1.0.9", default-features = false }
sqlx = { version = "0.3.2", default-features = false, path = "../sqlx-core", package = "sqlx-core" }
sqlx = { version = "0.3.3", default-features = false, path = "../sqlx-core", package = "sqlx-core" }
serde_json = { version = "1.0", features = [ "raw_value" ], optional = true }
syn = { version = "1.0.16", default-features = false, features = [ "full" ] }
quote = { version = "1.0.2", default-features = false }