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

Commit ca19f53

Browse files
committed
Release v0.3.0
1 parent d73040d commit ca19f53

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "postgres-derive"
3-
version = "0.2.3"
3+
version = "0.3.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"

README.md

Lines changed: 4 additions & 3 deletions
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.12.0 or higher and Rust 1.15.0 or higher.
8+
The generated code requires rust-postgres 0.14 and Rust 1.15.0 or higher.
99

1010
# Usage
1111

@@ -17,8 +17,8 @@ Cargo.toml
1717
# ...
1818

1919
[dependencies]
20-
postgres-derive = "0.2"
21-
postgres = "0.13"
20+
postgres-derive = "0.3"
21+
postgres = "0.14"
2222
```
2323

2424
lib.rs
@@ -37,6 +37,7 @@ pub enum Mood {
3737

3838
// ...
3939
```
40+
4041
# Types
4142

4243
## Enums

0 commit comments

Comments
 (0)