Skip to content
This repository was archived by the owner on Oct 10, 2019. It is now read-only.

Commit 812a298

Browse files
committed
Merge branch 'release'
2 parents b06bd2f + d665ded commit 812a298

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Syntax extensions to automatically derive `FromSql` and `ToSql` implementations for Postgres enum,
66
domain, and composite types.
77

8-
The generated code requires rust-postgres 0.11.3 or higher and Rust 1.8.0 or higher.
8+
The generated code requires rust-postgres 0.12.0 or higher and Rust 1.10.0 or higher.
99

1010
# Usage
1111

postgres-derive-codegen/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "postgres-derive-codegen"
3-
version = "0.1.4"
3+
version = "0.2.0"
44
authors = ["Steven Fackler <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
description = "Deriving codegen support for Postgres enum, domain, and composite types"
@@ -12,4 +12,4 @@ exclude = ["test"]
1212
[dependencies]
1313
syntex = "0.44"
1414
syntex_syntax = "0.44"
15-
postgres-derive-internals = { path = "../postgres-derive-internals" }
15+
postgres-derive-internals = { version = "0.2.0", path = "../postgres-derive-internals" }

postgres-derive-internals/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "postgres-derive-internals"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Steven Fackler <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
description = "Unstable internals library used by postgres-derive and postgres-derive-codegen"

postgres-derive/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "postgres-derive"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Steven Fackler <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
description = "Deriving plugin support for Postgres enum, domain, and composite types"
@@ -13,7 +13,7 @@ proc-macro = true
1313
test = false
1414

1515
[dependencies]
16-
postgres-derive-internals = { path = "../postgres-derive-internals" }
16+
postgres-derive-internals = { version = "0.2.0", path = "../postgres-derive-internals" }
1717

1818
[dev-dependencies]
1919
postgres = "0.12"

0 commit comments

Comments
 (0)