From b833f0a3a99afc4b58b8b70237a90d8fadf53591 Mon Sep 17 00:00:00 2001 From: lemunozm Date: Wed, 17 May 2023 09:26:25 +0200 Subject: [PATCH] release v0.17.0 --- CHANGELOG.md | 3 +++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 4 ++-- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad3fd1d..9d78c38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## Release 0.17.0 +- Add `bin_device()` option for TCP: [#158](https://github.com/lemunozm/message-io/pull/158) + ## Release 0.16.0 - Use builders for build transport options: [#153](https://github.com/lemunozm/message-io/pull/153) - New transport options for TCP adapter: source_address and bind_device: [#154](https://github.com/lemunozm/message-io/pull/154) diff --git a/Cargo.lock b/Cargo.lock index c1c691a..26ec9a6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -552,7 +552,7 @@ dependencies = [ [[package]] name = "message-io" -version = "0.16.0" +version = "0.17.0" dependencies = [ "bincode", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 0c19d34..9ac71d3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "message-io" -version = "0.16.0" +version = "0.17.0" authors = ["lemunozm "] edition = "2018" readme = "README.md" diff --git a/README.md b/README.md index 6aa6da4..c95bf15 100644 --- a/README.md +++ b/README.md @@ -82,14 +82,14 @@ You could change the transport of your application in literally one line. Add to your `Cargo.toml` (all transports included by default): ```toml [dependencies] -message-io = "0.16" +message-io = "0.17" ``` If you **only** want to use a subset of the available transport battery, you can select them by their associated features `tcp`, `udp`, and `websocket`. For example, in order to include only *TCP* and *UDP*, add to your `Cargo.toml`: ```toml [dependencies] -message-io = { version = "0.16", default-features = false, features = ["tcp", "udp"] } +message-io = { version = "0.17", default-features = false, features = ["tcp", "udp"] } ``` ### All in one: TCP, UDP and WebSocket echo server