diff --git a/CHANGELOG.md b/CHANGELOG.md index f394def..154791a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# v0.1.0-preview.2 + +docs.rs builds on current nightly. `doc_auto_cfg` was removed in 1.92 and +merged into `doc_cfg`; the crate no longer enables that feature. + # v0.1.0-preview.1 First public preview of `getstream`, the server-side Stream Video SDK for Rust: diff --git a/Cargo.lock b/Cargo.lock index f9b603e..57bbbef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1128,7 +1128,7 @@ dependencies = [ [[package]] name = "getstream" -version = "0.1.0-preview.1" +version = "0.1.0-preview.2" dependencies = [ "anyhow", "base64 0.23.1", diff --git a/Cargo.toml b/Cargo.toml index 78ed565..5e94174 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "getstream" -version = "0.1.0-preview.1" +version = "0.1.0-preview.2" edition = "2024" rust-version = "1.88" authors = ["Stream.io, Inc. "] diff --git a/README.md b/README.md index c983263..d495210 100644 --- a/README.md +++ b/README.md @@ -78,14 +78,14 @@ sudo apt install libvpx-dev cmake pkg-config build-essential ## Installation ```bash -cargo add getstream@0.1.0-preview.1 tokio tracing +cargo add getstream@0.1.0-preview.2 tokio tracing ``` Or in `Cargo.toml`: ```toml [dependencies] -getstream = "0.1.0-preview.1" +getstream = "0.1.0-preview.2" tokio = { version = "1", features = ["macros", "rt-multi-thread", "signal"] } tracing = "0.1" ``` diff --git a/src/lib.rs b/src/lib.rs index fa2d92e..d9e62cd 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,4 @@ #![doc = include_str!("../README.md")] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] #![doc(html_favicon_url = "https://avatars.githubusercontent.com/u/8597527?s=32&v=4")] #![doc(html_logo_url = "https://avatars.githubusercontent.com/u/8597527?s=128&v=4")] #![doc(issue_tracker_base_url = "https://github.com/GetStream/stream-video-rust/issues/")]