Ben Frankel
Ben Frankel
Fixes https://github.com/NiklasEi/bevy_asset_loader/issues/219. Testing: `cargo check --all-features`.
Would be more explicit and consistent with other Bevy ecosystem crates. `use bevy_tweening::*;` may pull in unwanted names.
Currently `trunk` will silently ignore typos in `Trunk.toml`, even when running in `--verbose` mode. This makes it very difficult to even realize that there's an issue, let alone determine what...
**Describe the bug** If I run `cargo generate thisdoesnot/exist`, the output does not mention that that GitHub repository does not exist. **make sure you** - [X] I'm on the latest...
**Describe the bug** `cargo-generate` loads templates into RAM instead of disk. If a template takes up 16GB and you're on a machine with 16GB of RAM, it'll lock up your...
The [required components documentation](https://dev-docs.bevyengine.org/bevy/ecs/component/trait.Component.html#required-components) describes the algorithm for resolving multiple constructors for the same component in a required components tree as follows: > In general, this shouldn’t happen often, but...
There are a few inconsistencies and gaps in the current one-shot systems API: - There should be a `Commands::unregister_system_cached` method - `Commands::` and `World::run_system_with_input` should be renamed to `run_system_with` for...
Notes: - A version with Bevy 0.15 support was never published, so a release on this PR would jump straight from 0.14 to 0.16. - `bevy_egui` has [some new guidelines](https://docs.rs/bevy_egui/latest/bevy_egui/#note-to-developers-of-public-plugins)...
### What I did ```python import sdmx client = sdmx.Client(source='IMF_DATA3') client.dataflow(resource_id='BOP', agency_id='IMF.STA', references='all') ``` ### What happened ``` sdmx.exceptions.XMLParseError: TypeError: FacetType.__init__() got an unexpected keyword argument 'is_multilingual' ``` The traceback...