Skip to content

Commit 90fd357

Browse files
committed
Prepare v0.3.4
1 parent c40288a commit 90fd357

File tree

5 files changed

+38
-9
lines changed

5 files changed

+38
-9
lines changed

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,33 @@ 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.4 - 2020-04-10
9+
10+
### Fixed
11+
12+
- [[#241]] Type name for custom enum is not always attached to TypeInfo in PostgreSQL
13+
14+
- [[#237]] [[#238]] User-defined type name matching is now case-insensitive in PostgreSQL [[@qtbeee]]
15+
16+
- [[#231]] Handle empty queries (and those with comments) in SQLite
17+
18+
- [[#228]] Provide `MapRow` implementations for functions (enables `.map(|row| ...)` over `.try_map(|row| ...)`)
19+
20+
### Added
21+
22+
- [[#234]] Add support for `NUMERIC` in MySQL with the `bigdecimal` crate [[@xiaopengli89]]
23+
24+
- [[#227]] Support `#[sqlx(rename = "new_name")]` on struct fields within a `FromRow` derive [[@sidred]]
25+
26+
[#228]: https://github.com/launchbadge/sqlx/issues/228
27+
[#231]: https://github.com/launchbadge/sqlx/issues/231
28+
[#237]: https://github.com/launchbadge/sqlx/issues/237
29+
[#241]: https://github.com/launchbadge/sqlx/issues/241
30+
31+
[#227]: https://github.com/launchbadge/sqlx/pull/227
32+
[#234]: https://github.com/launchbadge/sqlx/pull/234
33+
[#238]: https://github.com/launchbadge/sqlx/pull/238
34+
835
## 0.3.3 - 2020-04-01
936

1037
### Fixed
@@ -391,3 +418,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
391418
[@Ace4896]: https://github.com/Ace4896
392419
[@jamwaffles]: https://github.com/jamwaffles
393420
[@nrjais]: https://github.com/nrjais
421+
[@qtbeee]: https://github.com/qtbeee
422+
[@xiaopengli89]: https://github.com/xiaopengli89

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
@@ -14,7 +14,7 @@ members = [
1414

1515
[package]
1616
name = "sqlx"
17-
version = "0.3.3"
17+
version = "0.3.4"
1818
license = "MIT OR Apache-2.0"
1919
readme = "README.md"
2020
repository = "https://github.com/launchbadge/sqlx"
@@ -62,8 +62,8 @@ json = [ "sqlx-core/json", "sqlx-macros/json" ]
6262
time = [ "sqlx-core/time", "sqlx-macros/time" ]
6363

6464
[dependencies]
65-
sqlx-core = { version = "0.3.3", path = "sqlx-core", default-features = false }
66-
sqlx-macros = { version = "0.3.3", path = "sqlx-macros", default-features = false, optional = true }
65+
sqlx-core = { version = "0.3.4", path = "sqlx-core", default-features = false }
66+
sqlx-macros = { version = "0.3.4", path = "sqlx-macros", default-features = false, optional = true }
6767

6868
[dev-dependencies]
6969
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.3"
3+
version = "0.3.4"
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.3"
3+
version = "0.3.4"
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.3", default-features = false, path = "../sqlx-core", package = "sqlx-core" }
43+
sqlx = { version = "0.3.4", 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)