Skip to content

Commit bec6752

Browse files
committed
prepare release v0.19.0
1 parent 8568da2 commit bec6752

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## Release 0.19.0
4+
- Update internal dependencies
5+
36
## Release 0.18.3
47
- Fix tugstenite dependency adding correct version
58

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "message-io"
3-
version = "0.18.3"
3+
version = "0.19.0"
44
authors = ["lemunozm <[email protected]>"]
55
edition = "2018"
66
readme = "README.md"

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,14 @@ You could change the transport of your application in literally one line.
8282
Add to your `Cargo.toml` (all transports included by default):
8383
```toml
8484
[dependencies]
85-
message-io = "0.18"
85+
message-io = "0.19"
8686
```
8787
If you **only** want to use a subset of the available transport battery,
8888
you can select them by their associated features `tcp`, `udp`, and `websocket`.
8989
For example, in order to include only *TCP* and *UDP*, add to your `Cargo.toml`:
9090
```toml
9191
[dependencies]
92-
message-io = { version = "0.18", default-features = false, features = ["tcp", "udp"] }
92+
message-io = { version = "0.19", default-features = false, features = ["tcp", "udp"] }
9393
```
9494

9595
### All in one: TCP, UDP and WebSocket echo server

0 commit comments

Comments
 (0)