Skip to content

Commit 904c951

Browse files
committedJun 30, 2019
Release postgres v0.16.0-rc.2
1 parent 6464954 commit 904c951

File tree

5 files changed

+15
-24
lines changed

5 files changed

+15
-24
lines changed
 

‎postgres-protocol/CHANGELOG.md

+2-7
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
# Change Log
22

3-
## [Unreleased]
4-
5-
## [v0.4.1] - 2019-06-29
3+
## v0.4.1 - 2019-06-29
64

75
### Added
86

97
* Added `backend::Framed` to minimally parse the structure of backend messages.
108

11-
## [v0.4.0] - 2019-03-05
9+
## v0.4.0 - 2019-03-05
1210

1311
### Added
1412

@@ -23,7 +21,4 @@
2321

2422
Look at the [release tags] for information about older releases.
2523

26-
[Unreleased]: https://github.com/sfackler/rust-postgres/compare/postgres-protocol-v0.4.1...master
27-
[v0.4.1]: https://github.com/sfackler/rust-postgres/compare/postgres-protocol-v0.4.0...postgres-protocol-v0.4.1
28-
[v0.4.0]: https://github.com/sfackler/rust-postgres/compare/postgres-protocol-v0.3.2...postgres-protocol-v0.4.0
2924
[release tags]: https://github.com/sfackler/rust-postgres/releases

‎postgres/CHANGELOG.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# Change Log
22

3-
## [Unreleased]
3+
## v0.16.0-rc.2 - 2019-06-29
44

5-
## [v0.16.0-rc.1] - 2019-04-06
5+
### Fixed
6+
7+
* Documentation fixes
8+
9+
## v0.16.0-rc.1 - 2019-04-06
610

711
### Changed
812

@@ -93,6 +97,4 @@
9397

9498
Look at the [release tags] for information about older releases.
9599

96-
[Unreleased]: https://github.com/sfackler/rust-postgres/compare/postgres-v0.16.0-rc.1...master
97-
[v0.16.0-rc.1]: https://github.com/sfackler/rust-postgres/compare/postgres-v0.15.2...postgres-v0.16.0-rc.1
98100
[release tags]: https://github.com/sfackler/rust-postgres/releases

‎postgres/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "postgres"
3-
version = "0.16.0-rc.1"
3+
version = "0.16.0-rc.2"
44
authors = ["Steven Fackler <sfackler@gmail.com>"]
55
edition = "2018"
66
license = "MIT/Apache-2.0"

‎postgres/src/lib.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@
5050
//!
5151
//! TLS support is implemented via external libraries. `Client::connect` and `Config::connect` take a TLS implementation
5252
//! as an argument. The `NoTls` type in this crate can be used when TLS is not required. Otherwise, the
53-
//! `tokio-postgres-openssl` and `tokio-postgres-native-tls` crates provide implementations backed by the `openssl` and
54-
//! `native-tls` crates, respectively.
55-
#![doc(html_root_url = "https://docs.rs/postgres/0.16.0-rc.1")]
53+
//! `postgres-openssl` and `postgres-native-tls` crates provide implementations backed by the `openssl` and `native-tls`
54+
//! crates, respectively.
55+
#![doc(html_root_url = "https://docs.rs/postgres/0.16.0-rc.2")]
5656
#![warn(clippy::all, rust_2018_idioms, missing_docs)]
5757

5858
#[cfg(feature = "runtime")]

‎tokio-postgres/CHANGELOG.md

+3-9
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# Change Log
22

3-
## [Unreleased]
4-
5-
## [v0.4.0-rc.3] - 2019-06-29
3+
## v0.4.0-rc.3 - 2019-06-29
64

75
### Fixed
86

@@ -12,13 +10,13 @@
1210

1311
* The items of the stream passed to `copy_in` must be `'static`.
1412

15-
## [v0.4.0-rc.2] - 2019-03-05
13+
## v0.4.0-rc.2 - 2019-03-05
1614

1715
### Fixed
1816

1917
* Fixed Cargo features to actually enable the functionality they claim to.
2018

21-
## [v0.4.0-rc.1] - 2019-03-05
19+
## v0.4.0-rc.1 - 2019-03-05
2220

2321
### Changed
2422

@@ -53,8 +51,4 @@
5351

5452
Look at the [release tags] for information about older releases.
5553

56-
[Unreleased]: https://github.com/sfackler/rust-postgres/compare/tokio-postgres-v0.4.0-rc.3...master
57-
[v0.4.0-rc.3]: https://github.com/sfackler/rust-postgres/compare/tokio-postgres-v0.4.0-rc.2...tokio-postgres-v0.4.0-rc.3
58-
[v0.4.0-rc.2]: https://github.com/sfackler/rust-postgres/compare/tokio-postgres-v0.4.0-rc.1...tokio-postgres-v0.4.0-rc.2
59-
[v0.4.0-rc.1]: https://github.com/sfackler/rust-postgres/compare/tokio-postgres-v0.3.0...tokio-postgres-v0.4.0-rc.1
6054
[release tags]: https://github.com/sfackler/rust-postgres/releases

0 commit comments

Comments
 (0)
Please sign in to comment.