Authored by DreamPiggy

Bumped version to 4.4.0

update CHANGELOG
  1 +## [4.4.0 - watchOS View Category, on May 31st, 2018](https://github.com/rs/SDWebImage/releases/tag/4.4.0)
  2 +See [all tickets marked for the 4.4.0 release](https://github.com/rs/SDWebImage/milestone/25)
  3 +
  4 +#### Features
  5 +- View Category
  6 + - Add the support for watchOS to use View Category method (`sd_setImageWithURL:`) on WKInterfaceImage #2343
  7 + - Add optimalFrameCacheSize && predrawingEnabled options for FLAnimatedImage #2323
  8 +- Cache
  9 + - Add `SDImageCacheScaleDownLargeImages` to allow cache to scale down large images if need #2281 #2273
  10 +
  11 +#### Improvements
  12 +- View Category
  13 + - Add `UIViewAnimationOptionAllowUserInteraction` as default options for convenient image transition #2315
  14 +- Manager
  15 + - Replace `@synchronized` with dispatch_semaphore_t in SDWebImageManager #2340
  16 +
  17 +#### Performances
  18 +- Coder
  19 + - Remove the extra calculation of image orientation for ImageIO coder #2313
  20 + - Remove the duplicated process to force decode (draw on bitmap context) in Image/IO's progressive decoding #2314
  21 +- Common
  22 + - Minor optimize for dispatch_queue_async_safe #2329
  23 +
  24 +#### Fixes
  25 +- Coder
  26 + - Fix that force decode not works for alpha-channel images #2272 #2297
  27 + - Fix WebP Encoding only works for RGBA8888 CGImage but not other color mode #2318
  28 + - Fix the thread-safe issue for coders manager #2274 #2249 #1484
  29 + - Fix the wrong declaration of NSArray generics #2260
  30 +
  31 +#### Docs
  32 +- Fix function storeImageDataToDisk description #2301
  33 +
1 ## [4.3.3 - Cache Serializer, on Mar 12th, 2018](https://github.com/rs/SDWebImage/releases/tag/4.3.3) 34 ## [4.3.3 - Cache Serializer, on Mar 12th, 2018](https://github.com/rs/SDWebImage/releases/tag/4.3.3)
2 See [all tickets marked for the 4.3.3 release](https://github.com/rs/SDWebImage/milestone/24) 35 See [all tickets marked for the 4.3.3 release](https://github.com/rs/SDWebImage/milestone/24)
3 36
@@ -631,3 +664,5 @@ For consistency, added async methods in `SDWebImageManager` `cachedImageExistsFo @@ -631,3 +664,5 @@ For consistency, added async methods in `SDWebImageManager` `cachedImageExistsFo
631 ## [1.0.0 on Dec 31st, 2009](https://github.com/rs/SDWebImage/releases/tag/1.0.0) 664 ## [1.0.0 on Dec 31st, 2009](https://github.com/rs/SDWebImage/releases/tag/1.0.0)
632 665
633 ## [1.0 on Dec 31st, 2009](https://github.com/rs/SDWebImage/releases/tag/1.0) 666 ## [1.0 on Dec 31st, 2009](https://github.com/rs/SDWebImage/releases/tag/1.0)
  667 +
  668 +
1 Pod::Spec.new do |s| 1 Pod::Spec.new do |s|
2 s.name = 'SDWebImage' 2 s.name = 'SDWebImage'
3 - s.version = '4.3.3' 3 + s.version = '4.4.0'
4 4
5 s.osx.deployment_target = '10.9' 5 s.osx.deployment_target = '10.9'
6 s.ios.deployment_target = '7.0' 6 s.ios.deployment_target = '7.0'
@@ -15,11 +15,11 @@ @@ -15,11 +15,11 @@
15 <key>CFBundlePackageType</key> 15 <key>CFBundlePackageType</key>
16 <string>FMWK</string> 16 <string>FMWK</string>
17 <key>CFBundleShortVersionString</key> 17 <key>CFBundleShortVersionString</key>
18 - <string>4.3.3</string> 18 + <string>4.4.0</string>
19 <key>CFBundleSignature</key> 19 <key>CFBundleSignature</key>
20 <string>????</string> 20 <string>????</string>
21 <key>CFBundleVersion</key> 21 <key>CFBundleVersion</key>
22 - <string>4.3.3</string> 22 + <string>4.4.0</string>
23 <key>NSPrincipalClass</key> 23 <key>NSPrincipalClass</key>
24 <string></string> 24 <string></string>
25 </dict> 25 </dict>