Skip to content

Commit 9237fbc

Browse files
author
Flavien Raynaud
committed
Bump version to 0.21.0
1 parent d9321f2 commit 9237fbc

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
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 = "rdkafka"
3-
version = "0.20.0"
3+
version = "0.21.0"
44
authors = ["Federico Giraud <[email protected]>"]
55
repository = "https://github.com/fede1024/rust-rdkafka"
66
readme = "README.md"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ Add this to your `Cargo.toml`:
114114

115115
```toml
116116
[dependencies]
117-
rdkafka = "~0.20"
117+
rdkafka = "~0.21"
118118
```
119119

120120
This crate will compile librdkafka from sources and link it statically to your executable. To compile librdkafka you'll need:
@@ -130,7 +130,7 @@ To enable ssl and sasl, use the `features` field in `Cargo.toml`. Example:
130130

131131
```toml
132132
[dependencies.rdkafka]
133-
version = "~0.20"
133+
version = "~0.21"
134134
features = ["ssl", "sasl"]
135135
```
136136

changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
<a name="0.21.0"></a>
4+
## 0.21.0 (2019-04-24)
5+
6+
* Add librdkafka 1.0 support
7+
* Automatically generate librdkafka bindings
8+
* Use updated tokio version in asynchronous\_processing example
9+
10+
311
<a name="0.20.0"></a>
412
## 0.20.0 (2019-02-25)
513

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
//!
108108
//! ```toml
109109
//! [dependencies]
110-
//! rdkafka = "~0.20"
110+
//! rdkafka = "~0.21"
111111
//! ```
112112
//!
113113
//! This crate will compile librdkafka from sources and link it statically to your executable. To compile librdkafka you'll need:
@@ -123,7 +123,7 @@
123123
//!
124124
//! ```toml
125125
//! [dependencies.rdkafka]
126-
//! version = "~0.20"
126+
//! version = "~0.21"
127127
//! features = ["ssl", "sasl"]
128128
//! ```
129129
//!

0 commit comments

Comments
 (0)