-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update to 0.14.0 rc.2 #282
Conversation
ab3d937
to
3c433a2
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #282 +/- ##
==========================================
- Coverage 90.94% 90.44% -0.50%
==========================================
Files 38 36 -2
Lines 2329 2197 -132
==========================================
- Hits 2118 1987 -131
+ Misses 211 210 -1 ☔ View full report in Codecov by Sentry. |
@@ -26,8 +26,7 @@ pub struct ParentSyncPlugin; | |||
/// then you need to run it before [`ServerSet::StoreHierarchy`]. | |||
impl Plugin for ParentSyncPlugin { | |||
fn build(&self, app: &mut App) { | |||
app.register_type::<Option<Entity>>() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not needed since Bevy recursively register types.
Just a few spaces and an intermediate veriable to make the code look a little bit nicer.
{ name = "bitflags", version = "2.0" }, | ||
{ name = "cfg_aliases", version = "0.1" }, | ||
{ name = "event-listener", version = "<5.0" }, | ||
{ name = "event-listener-strategy", version = "0.5" }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How do you figure out what to put in the deny.toml
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just run cargo deny
.
I didn't update
bevy_replicon_renet
, but maybe we can do a release without it to let other developers update their messaging plugins?