InteractionGroups default memberships value is now GROUP_1 (#706)
Co-authored-by: Thierry Berger <contact@thierryberger.com>
This commit is contained in:
@@ -4,6 +4,10 @@
|
|||||||
|
|
||||||
- The region key has been replaced by an i64 in the f64 version of rapier, increasing the range before panics occur.
|
- The region key has been replaced by an i64 in the f64 version of rapier, increasing the range before panics occur.
|
||||||
|
|
||||||
|
### Modified
|
||||||
|
|
||||||
|
- `InteractionGroups` default value for `memberships` is now `GROUP_1` (#706)
|
||||||
|
|
||||||
## v0.22.0 (20 July 2024)
|
## v0.22.0 (20 July 2024)
|
||||||
|
|
||||||
### Fix
|
### Fix
|
||||||
|
|||||||
@@ -71,7 +71,10 @@ impl InteractionGroups {
|
|||||||
|
|
||||||
impl Default for InteractionGroups {
|
impl Default for InteractionGroups {
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
Self::all()
|
Self {
|
||||||
|
memberships: Group::GROUP_1,
|
||||||
|
filter: Group::ALL,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user