From c30b5c1db4668bb1314f32e0121270e1bb1dac7a Mon Sep 17 00:00:00 2001 From: Hugo Tunius Date: Mon, 12 Sep 2022 18:42:36 +0100 Subject: [PATCH] Release v0.8.1 of webrtc-ice --- ice/CHANGELOG.md | 3 +++ ice/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ice/CHANGELOG.md b/ice/CHANGELOG.md index 5efece8d6..59c29f9b4 100644 --- a/ice/CHANGELOG.md +++ b/ice/CHANGELOG.md @@ -1,6 +1,9 @@ # webrtc-ice changelog ## Unreleased + +## v0.8.1 + * Promote agent lock in ice_gather.rs create_agent() to top level of the function to avoid a race condition. [#290 Promote create_agent lock to top of function, to avoid race condition](https://github.com/webrtc-rs/webrtc/pull/290) contributed by [efer-ms](https://github.com/efer-ms) ## v0.8.0 diff --git a/ice/Cargo.toml b/ice/Cargo.toml index a22788fc3..68dc04ab3 100644 --- a/ice/Cargo.toml +++ b/ice/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "webrtc-ice" -version = "0.8.0" +version = "0.8.1" authors = ["Rain Liu "] edition = "2018" description = "A pure Rust implementation of ICE"