- Fix the issue that using `Image(uiImage:)` will result wrong rendering mode in some component like `TabBarItem`, while using `Image(decorative:scale:orientation:)` works well #177
### Changed
- Remove the WebImage placeholder maxWidth/maxHeight modifier, this may break some use case like `TabView`. If user want to use placeholder, limit themselves #178#175
- Try to solve the SwiftUI bug of rendering EXIF UIImage in WebImage, as well as vector images #102
- Now `WebImage` will render the vector images as bitmap version even if you don't provide `.thumbnailPixelSize`. To render real vector images, use `AnimatedImage` instead.
-`ImageManager` now public. Which allows advanced usage for custom View type. Use `@ObservedObject` to bind the manager with your own View and update the image.
-`WebImage` now supports animation, use `isAnimating` binding value on init methods.
-`WebImage` now supports the detailed animation control options, like `customLoopCount`, `pausable`, `purgeable`, `playbackRate`.
-`AnimatedImage` now supports the indicator with `ViewModifier` as `WebImage`.
-`IndicatorViewModifier` now public.
-`IndicatorReportable` now public.
### Changed
- Indicator's `progress` type now changed from `CGFloat` to `Double`.
-`WebImage.aniamted(_:)` now becomes the `WebImage.init(url:options:context:isAnimating:)` Binding arg, you can use the Binding to control animations as well.
-`AnimatedImage.playBackRate` now becomes `AnimatedImage.playbackRate`
-`AnimatedImage.customLoopCount` now is `UInt` instead of `Int`.
-`AnimatedImage.resizable` modifier now matches the SwiftUI behavior, you must call it or the size will be fixed to image pixel size.
### Removed
- Removed all the description about 0.x version behavior in README.md.