Skip to content

Commit e201622

Browse files
committed
Prepare release v0.9.2
1 parent 14d4d8e commit e201622

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ vendored = ['zmq-sys/vendored']
3030
[dependencies]
3131
libc = "0.2.15"
3232
log = "0.4.3"
33-
zmq-sys = { version = "0.10.0", path = "zmq-sys" }
33+
zmq-sys = { version = "0.11.0", path = "zmq-sys" }
3434
bitflags = "1.0"
3535

3636
[dev-dependencies]

NEWS.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,27 @@
1-
# 0.9.2 (unreleased)
1+
# 0.9.2
22

33
## New and improved functionality
44

55
- Support for the `ZMQ_REQ_RELAXED` and `ZMQ_REQ_CORRELATE` socket
6-
options.
6+
options, implemented in #285.
77

88
## Compatibility
99

1010
- `SocketType`, `Mechanism`, and `Error` can not longer be cast to an
1111
integer type and expected to get the corresponding `libzmq` C-level
1212
value. The ability to cast to integers and get the C enum values was
13-
never a documented part of the API, so I don't consider this as a
13+
never a documented part of the API, so this is not considered a
1414
breaking change.
1515

1616
Unfortunately, the `SocketEvent` can not be future-proofed in this
1717
way; the monitoring API needs breaking changes to gain a reasonable
1818
level of type-safety.
1919

20+
## Fixes
21+
22+
- A potential panic in `Message::gets` involving messages with
23+
non-UTF8 property values has been fixed; see #288.
24+
2025
# 0.9.1
2126

2227
## New and improved functionality

zmq-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zmq-sys"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
authors = [
55
66

0 commit comments

Comments
 (0)