Skip to content

Commit 2e786ba

Browse files
committed
update version
1 parent 8a67be4 commit 2e786ba

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

Cargo.toml

+3-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ doctest = false
1919
members = ["postgres-from-row-derive"]
2020

2121
[workspace.package]
22-
version = "0.3.0"
22+
version = "0.4.0"
2323
authors = ["Remo Pas <[email protected]>"]
2424
edition = "2021"
2525
repository = "https://github.com/remkop22/postgres-from-row"
@@ -29,7 +29,7 @@ keywords = ["postgres", "postgres-tokio", "postgresql", "from-row", "mapper"]
2929
categories = ["database", "parsing", "data-structures"]
3030

3131
[workspace.dependencies]
32-
postgres-from-row-derive = { path = "postgres-from-row-derive", version = "=0.3.0" }
32+
postgres-from-row-derive = { path = "postgres-from-row-derive", version = "=0.4.0" }
3333

3434
[features]
3535
default = ["postgres"]
@@ -40,3 +40,4 @@ tokio-postgres = ["dep:tokio-postgres"]
4040
tokio-postgres = { version = "0.7.7", default_features = false, optional = true }
4141
postgres = { version = "0.19.4", default_features = false, optional = true }
4242
postgres-from-row-derive.workspace = true
43+

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ This crate works with [postgres](<https://docs.rs/postgres>) by default.
66

77
```toml
88
[dependencies]
9-
postgres_from_row = "0.3.0"
9+
postgres_from_row = "0.4.0"
1010
```
1111

1212
If you want to use it with [tokio-postgres](<https://docs.rs/tokio-postgres>), enable it like so:
1313

1414
```toml
1515
[dependencies]
16-
postgres_from_row = { version = "0.3.0", default_features = false, features = ["tokio-postgres"] }
16+
postgres_from_row = { version = "0.4.0", default_features = false, features = ["tokio-postgres"] }
1717
```
1818
## Examples
1919
```rust

src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
//!
66
//! ```toml
77
//! [dependencies]
8-
//! postgres_from_row = "0.3.0"
8+
//! postgres_from_row = "0.4.0"
99
//! ```
1010
//!
1111
//! If you want to use it with [tokio-postgres](<https://docs.rs/tokio-postgres>), enable it like so:
1212
//!
1313
//! ```toml
1414
//! [dependencies]
15-
//! postgres_from_row = { version = "0.3.0", default_features = false, features = ["tokio-postgres"] }
15+
//! postgres_from_row = { version = "0.4.0", default_features = false, features = ["tokio-postgres"] }
1616
//! ```
1717
//! # Examples
1818
//! ```rust

0 commit comments

Comments
 (0)