diff --git a/CHANGELOG.md b/CHANGELOG.md index e02abe13..110369b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Unreleased +## 0.8.1 - 2023-04-02 +### Fixed +- `registry::ContainsViews` is now a public trait. + ## 0.8.0 - 2023-04-02 ### Added - `view::ContainsFilter` trait to indicate that a filter can be expressed over a view. diff --git a/Cargo.toml b/Cargo.toml index 0847dba8..270a63b9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "brood" -version = "0.8.0" +version = "0.8.1" authors = ["Anders Evensen"] edition = "2021" rust-version = "1.65.0" diff --git a/src/registry/mod.rs b/src/registry/mod.rs index c99446d6..a3d03172 100644 --- a/src/registry/mod.rs +++ b/src/registry/mod.rs @@ -50,6 +50,7 @@ pub use contains::{ ContainsEntities, ContainsEntity, ContainsQuery, + ContainsViews, }; pub use debug::Debug; pub use eq::{ @@ -59,7 +60,6 @@ pub use eq::{ #[cfg(feature = "rayon")] pub(crate) use contains::ContainsParViews; -pub(crate) use contains::ContainsViews; pub(crate) use get::Get; #[cfg(feature = "rayon")] pub(crate) use sealed::CanonicalParViews;