mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-10-02 15:25:32 +00:00
Prepare v0.3.1
This commit is contained in:
parent
b65602d842
commit
a84e1f6626
34
CHANGELOG.md
34
CHANGELOG.md
@ -5,6 +5,20 @@ 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/),
|
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).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## 0.3.1 - 2020-03-30
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- [[#203]] Allow an empty password for MySQL
|
||||||
|
|
||||||
|
- [[#204]] Regression in error reporting for invalid SQL statements on PostgreSQL
|
||||||
|
|
||||||
|
- [[#200]] Fixes the incorrect handling of raw (`r#...`) fields of a struct in the `FromRow` derive [[@sidred]]
|
||||||
|
|
||||||
|
[#200]: https://github.com/launchbadge/sqlx/pull/200
|
||||||
|
[#203]: https://github.com/launchbadge/sqlx/issues/203
|
||||||
|
[#204]: https://github.com/launchbadge/sqlx/issues/204
|
||||||
|
|
||||||
## 0.3.0 - 2020-03-29
|
## 0.3.0 - 2020-03-29
|
||||||
|
|
||||||
### Breaking Changes
|
### Breaking Changes
|
||||||
@ -196,11 +210,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
[#135]: https://github.com/launchbadge/sqlx/pull/135
|
[#135]: https://github.com/launchbadge/sqlx/pull/135
|
||||||
[#108]: https://github.com/launchbadge/sqlx/pull/108
|
[#108]: https://github.com/launchbadge/sqlx/pull/108
|
||||||
|
|
||||||
[@bmisiak]: https://github.com/bmisiak
|
|
||||||
[@oeb25]: https://github.com/oeb25
|
|
||||||
[@PoiScript]: https://github.com/PoiScript
|
|
||||||
[@utter-step]: https://github.com/utter-step
|
|
||||||
|
|
||||||
## 0.2.6 - 2020-03-10
|
## 0.2.6 - 2020-03-10
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
@ -241,8 +250,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
[#100]: https://github.com/launchbadge/sqlx/issues/100
|
[#100]: https://github.com/launchbadge/sqlx/issues/100
|
||||||
[#104]: https://github.com/launchbadge/sqlx/issues/104
|
[#104]: https://github.com/launchbadge/sqlx/issues/104
|
||||||
|
|
||||||
[@repnop]: https://github.com/repnop
|
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- [[#72]] Add `PgTypeInfo::with_oid` to allow simple construction of `PgTypeInfo` which enables `HasSqlType`
|
- [[#72]] Add `PgTypeInfo::with_oid` to allow simple construction of `PgTypeInfo` which enables `HasSqlType`
|
||||||
@ -257,10 +264,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
[#96]: https://github.com/launchbadge/sqlx/issues/96
|
[#96]: https://github.com/launchbadge/sqlx/issues/96
|
||||||
[#71]: https://github.com/launchbadge/sqlx/issues/71
|
[#71]: https://github.com/launchbadge/sqlx/issues/71
|
||||||
|
|
||||||
[@jplatte]: https://github.com/jplatte
|
|
||||||
[@yaahc]: https://github.com/yaahc
|
|
||||||
[@Freax13]: https://github.com/Freax13
|
|
||||||
|
|
||||||
## 0.2.4 - 2020-01-18
|
## 0.2.4 - 2020-01-18
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
@ -352,3 +355,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
[@danielakhterov]: https://github.com/danielakhterov
|
[@danielakhterov]: https://github.com/danielakhterov
|
||||||
[@mehcode]: https://github.com/mehcode
|
[@mehcode]: https://github.com/mehcode
|
||||||
[@udoprog]: https://github.com/udoprog
|
[@udoprog]: https://github.com/udoprog
|
||||||
|
[@jplatte]: https://github.com/jplatte
|
||||||
|
[@yaahc]: https://github.com/yaahc
|
||||||
|
[@Freax13]: https://github.com/Freax13
|
||||||
|
[@repnop]: https://github.com/repnop
|
||||||
|
[@bmisiak]: https://github.com/bmisiak
|
||||||
|
[@oeb25]: https://github.com/oeb25
|
||||||
|
[@PoiScript]: https://github.com/PoiScript
|
||||||
|
[@utter-step]: https://github.com/utter-step
|
||||||
|
[@sidred]: https://github.com/sidred
|
||||||
|
6
Cargo.lock
generated
6
Cargo.lock
generated
@ -1669,7 +1669,7 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "sqlx"
|
name = "sqlx"
|
||||||
version = "0.3.0"
|
version = "0.3.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"async-std",
|
"async-std",
|
||||||
@ -1689,7 +1689,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "sqlx-core"
|
name = "sqlx-core"
|
||||||
version = "0.3.0"
|
version = "0.3.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-native-tls",
|
"async-native-tls",
|
||||||
"async-std",
|
"async-std",
|
||||||
@ -1768,7 +1768,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "sqlx-macros"
|
name = "sqlx-macros"
|
||||||
version = "0.3.0"
|
version = "0.3.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-std",
|
"async-std",
|
||||||
"dotenv",
|
"dotenv",
|
||||||
|
@ -11,7 +11,7 @@ members = [
|
|||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "sqlx"
|
name = "sqlx"
|
||||||
version = "0.3.0"
|
version = "0.3.1"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/launchbadge/sqlx"
|
repository = "https://github.com/launchbadge/sqlx"
|
||||||
@ -59,8 +59,8 @@ json = [ "sqlx-core/json", "sqlx-macros/json" ]
|
|||||||
time = [ "sqlx-core/time", "sqlx-macros/time" ]
|
time = [ "sqlx-core/time", "sqlx-macros/time" ]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sqlx-core = { version = "0.3.0", path = "sqlx-core", default-features = false }
|
sqlx-core = { version = "0.3.1", path = "sqlx-core", default-features = false }
|
||||||
sqlx-macros = { version = "0.3.0", path = "sqlx-macros", default-features = false, optional = true }
|
sqlx-macros = { version = "0.3.1", path = "sqlx-macros", default-features = false, optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
anyhow = "1.0.26"
|
anyhow = "1.0.26"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sqlx-core"
|
name = "sqlx-core"
|
||||||
version = "0.3.0"
|
version = "0.3.1"
|
||||||
repository = "https://github.com/launchbadge/sqlx"
|
repository = "https://github.com/launchbadge/sqlx"
|
||||||
description = "Core of SQLx, the rust SQL toolkit. Not intended to be used directly."
|
description = "Core of SQLx, the rust SQL toolkit. Not intended to be used directly."
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sqlx-macros"
|
name = "sqlx-macros"
|
||||||
version = "0.3.0"
|
version = "0.3.1"
|
||||||
repository = "https://github.com/launchbadge/sqlx"
|
repository = "https://github.com/launchbadge/sqlx"
|
||||||
description = "Macros for SQLx, the rust SQL toolkit. Not intended to be used directly."
|
description = "Macros for SQLx, the rust SQL toolkit. Not intended to be used directly."
|
||||||
license = "MIT OR Apache-2.0"
|
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 }
|
dotenv = { version = "0.15.0", default-features = false }
|
||||||
futures = { version = "0.3.4", default-features = false, features = [ "executor" ] }
|
futures = { version = "0.3.4", default-features = false, features = [ "executor" ] }
|
||||||
proc-macro2 = { version = "1.0.9", default-features = false }
|
proc-macro2 = { version = "1.0.9", default-features = false }
|
||||||
sqlx = { version = "0.3.0", default-features = false, path = "../sqlx-core", package = "sqlx-core" }
|
sqlx = { version = "0.3.1", default-features = false, path = "../sqlx-core", package = "sqlx-core" }
|
||||||
serde_json = { version = "1.0", features = [ "raw_value" ], optional = true }
|
serde_json = { version = "1.0", features = [ "raw_value" ], optional = true }
|
||||||
syn = { version = "1.0.16", default-features = false, features = [ "full" ] }
|
syn = { version = "1.0.16", default-features = false, features = [ "full" ] }
|
||||||
quote = { version = "1.0.2", default-features = false }
|
quote = { version = "1.0.2", default-features = false }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user