Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3819cb7

Browse files
committedJul 13, 2023
Bumped version to 0.13.0
1 parent 3b27487 commit 3819cb7

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed
 

‎SDWebImageWebPCoder.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'SDWebImageWebPCoder'
3-
s.version = '0.12.0'
3+
s.version = '0.13.0'
44
s.summary = 'WebP decoder/encoder for SDWebImage coder plugin.'
55

66
s.description = <<-DESC

‎SDWebImageWebPCoder/Classes/SDImageWebPCoder.m

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,6 @@ - (nullable CGImageRef)sd_createWebpImageWithData:(WebPData)webpData colorSpace:
648648
// For a typical ARGB image, the aligned bytes-per-row value is a multiple of 64.
649649
size_t alignment = pixelFormat.alignment;
650650
size_t bytesPerRow = SDByteAlign(width * (bitsPerPixel / 8), alignment);
651-
//size_t bytesPerRow = 6688;
652651

653652
void *rgba = WebPMalloc(bytesPerRow * height);
654653
config.output.is_external_memory = 1;

‎SDWebImageWebPCoder/Module/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.11.0</string>
18+
<string>0.13.0</string>
1919
<key>CFBundleVersion</key>
20-
<string>0.11.0</string>
20+
<string>0.13.0</string>
2121
<key>NSPrincipalClass</key>
2222
<string></string>
2323
</dict>

0 commit comments

Comments
 (0)
Please sign in to comment.