Skip to content

Commit a84e1f6

Browse files
committed
Prepare v0.3.1
1 parent b65602d commit a84e1f6

File tree

5 files changed

+32
-20
lines changed

5 files changed

+32
-20
lines changed

CHANGELOG.md

Lines changed: 23 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ 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.3.1 - 2020-03-30
9+
10+
### Fixed
11+
12+
- [[#203]] Allow an empty password for MySQL
13+
14+
- [[#204]] Regression in error reporting for invalid SQL statements on PostgreSQL
15+
16+
- [[#200]] Fixes the incorrect handling of raw (`r#...`) fields of a struct in the `FromRow` derive [[@sidred]]
17+
18+
[#200]: https://github.com/launchbadge/sqlx/pull/200
19+
[#203]: https://github.com/launchbadge/sqlx/issues/203
20+
[#204]: https://github.com/launchbadge/sqlx/issues/204
21+
822
## 0.3.0 - 2020-03-29
923

1024
### Breaking Changes
@@ -196,11 +210,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
196210
[#135]: https://github.com/launchbadge/sqlx/pull/135
197211
[#108]: https://github.com/launchbadge/sqlx/pull/108
198212

199-
[@bmisiak]: https://github.com/bmisiak
200-
[@oeb25]: https://github.com/oeb25
201-
[@PoiScript]: https://github.com/PoiScript
202-
[@utter-step]: https://github.com/utter-step
203-
204213
## 0.2.6 - 2020-03-10
205214

206215
### Added
@@ -241,8 +250,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
241250
[#100]: https://github.com/launchbadge/sqlx/issues/100
242251
[#104]: https://github.com/launchbadge/sqlx/issues/104
243252

244-
[@repnop]: https://github.com/repnop
245-
246253
### Added
247254

248255
- [[#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
257264
[#96]: https://github.com/launchbadge/sqlx/issues/96
258265
[#71]: https://github.com/launchbadge/sqlx/issues/71
259266

260-
[@jplatte]: https://github.com/jplatte
261-
[@yaahc]: https://github.com/yaahc
262-
[@Freax13]: https://github.com/Freax13
263-
264267
## 0.2.4 - 2020-01-18
265268

266269
### Fixed
@@ -352,3 +355,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
352355
[@danielakhterov]: https://github.com/danielakhterov
353356
[@mehcode]: https://github.com/mehcode
354357
[@udoprog]: https://github.com/udoprog
358+
[@jplatte]: https://github.com/jplatte
359+
[@yaahc]: https://github.com/yaahc
360+
[@Freax13]: https://github.com/Freax13
361+
[@repnop]: https://github.com/repnop
362+
[@bmisiak]: https://github.com/bmisiak
363+
[@oeb25]: https://github.com/oeb25
364+
[@PoiScript]: https://github.com/PoiScript
365+
[@utter-step]: https://github.com/utter-step
366+
[@sidred]: https://github.com/sidred

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ members = [
1111

1212
[package]
1313
name = "sqlx"
14-
version = "0.3.0"
14+
version = "0.3.1"
1515
license = "MIT OR Apache-2.0"
1616
readme = "README.md"
1717
repository = "https://github.com/launchbadge/sqlx"
@@ -59,8 +59,8 @@ json = [ "sqlx-core/json", "sqlx-macros/json" ]
5959
time = [ "sqlx-core/time", "sqlx-macros/time" ]
6060

6161
[dependencies]
62-
sqlx-core = { version = "0.3.0", path = "sqlx-core", default-features = false }
63-
sqlx-macros = { version = "0.3.0", path = "sqlx-macros", default-features = false, optional = true }
62+
sqlx-core = { version = "0.3.1", path = "sqlx-core", default-features = false }
63+
sqlx-macros = { version = "0.3.1", path = "sqlx-macros", default-features = false, optional = true }
6464

6565
[dev-dependencies]
6666
anyhow = "1.0.26"

sqlx-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sqlx-core"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
repository = "https://github.com/launchbadge/sqlx"
55
description = "Core of SQLx, the rust SQL toolkit. Not intended to be used directly."
66
license = "MIT OR Apache-2.0"

sqlx-macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sqlx-macros"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
repository = "https://github.com/launchbadge/sqlx"
55
description = "Macros for SQLx, the rust SQL toolkit. Not intended to be used directly."
66
license = "MIT OR Apache-2.0"
@@ -40,7 +40,7 @@ tokio = { version = "0.2.13", default-features = false, features = [ "rt-threade
4040
dotenv = { version = "0.15.0", default-features = false }
4141
futures = { version = "0.3.4", default-features = false, features = [ "executor" ] }
4242
proc-macro2 = { version = "1.0.9", default-features = false }
43-
sqlx = { version = "0.3.0", default-features = false, path = "../sqlx-core", package = "sqlx-core" }
43+
sqlx = { version = "0.3.1", default-features = false, path = "../sqlx-core", package = "sqlx-core" }
4444
serde_json = { version = "1.0", features = [ "raw_value" ], optional = true }
4545
syn = { version = "1.0.16", default-features = false, features = [ "full" ] }
4646
quote = { version = "1.0.2", default-features = false }

0 commit comments

Comments
 (0)