Update version and change-log for 0.4.1.

This commit is contained in:
Robin KAY 2023-04-11 20:14:01 +01:00
parent 1d5cff5eda
commit 3bf83e6531
2 changed files with 11 additions and 2 deletions

View File

@ -1,12 +1,21 @@
# Changelog # Changelog
## bevy_mod_outline 0.4.1 (2023-04-11)
### Fixed
- Fixed panic if mesh has unused vertex indices.
- Fixed panic if the DepthMode hasn't propagated before rendering.
### Changed
- Changed normal weighting to use vertex rather than face normals if available.
## bevy_mod_outline 0.4.0 (2023-03-22) ## bevy_mod_outline 0.4.0 (2023-03-22)
### Added ### Added
- Added enabled flag to OutlineStencil. - Added enabled flag to OutlineStencil.
- Added hollow example. - Added hollow example.
### ### Fixed
- Fixed outline depth propagating when inheritance not enabled. - Fixed outline depth propagating when inheritance not enabled.
### Changed ### Changed

View File

@ -1,6 +1,6 @@
[package] [package]
name = "bevy_mod_outline" name = "bevy_mod_outline"
version = "0.4.0" version = "0.4.1"
edition = "2021" edition = "2021"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
description = "A mesh outlining plugin for Bevy." description = "A mesh outlining plugin for Bevy."