diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e589f84..e2d40d3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # [unreleased] +Breaking changes: + +* `collections::only` no longer exports a `raw` submodule. It was never meant ot be exported in the first place. + # 0.16.0 Breaking changes: diff --git a/src/collections/only.rs b/src/collections/only.rs index 141e63b7..1be19415 100644 --- a/src/collections/only.rs +++ b/src/collections/only.rs @@ -3,7 +3,8 @@ use serde::Serialize; -pub use super::{all::StateEvent, raw::only as raw}; +pub use super::all::StateEvent; +use super::raw::only as raw; use crate::{ call::{ answer::AnswerEvent, candidates::CandidatesEvent, hangup::HangupEvent, invite::InviteEvent,