From caa53064bdf2dcd0c6c3a9252a68e205ea9e6056 Mon Sep 17 00:00:00 2001 From: kyren Date: Mon, 1 Jan 2024 16:22:31 -0500 Subject: [PATCH] prepare for 0.6.0 release --- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 668aca9..838a3ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [0.6.0] +- Support a shared `Crypto` instance between servers, useful on Firefox for + multiple connections per page. +- API incompatible change: Make `Server::new` sync. +- API incompatible change: Add `Runtime` trait to be reactor agnostic, adds an optional `tokio` feature + to provide the previous tokio implementation. + ## [0.5.3] - Handle FORWARD_TSN support in SCTP when it is specified as an extension diff --git a/Cargo.toml b/Cargo.toml index 633d5fb..b5a5913 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "webrtc-unreliable" -version = "0.5.3" +version = "0.6.0" authors = ["kyren "] edition = "2018" description = "UDP-like (unreliable, unordered) communication between Javascript/WebAssembly and native Rust via WebRTC"