Skip to content

Commit 86c1b5d

Browse files
committed
Bumped version to 1.1.0
1 parent e04c3d7 commit 86c1b5d

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,15 @@ let package = Package(
5050

5151
Use libwebp as you would normally, this is just a repo that adds an Xcode proj.
5252

53-
For Swift Package Manager user, use the modular import instead of C headers.
53+
For Swift Package Manager user, it's recommended to use the modular import instead of C headers.
5454

5555
+ Objective-C
5656

5757
```objective-c
5858
@import libwebp;
59+
// or if you don't use module
60+
#import <webp/decode.h>
61+
#import <webp/encode.h>
5962
```
6063

6164
+ Swift

Xcode/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>1.1.0-rc2</string>
18+
<string>1.1.0</string>
1919
<key>CFBundleVersion</key>
20-
<string>1.1.0-rc2</string>
20+
<string>1.1.0</string>
2121
<key>NSPrincipalClass</key>
2222
<string></string>
2323
</dict>

libwebp.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 = 'libwebp'
3-
s.version = '1.1.0-rc2'
3+
s.version = '1.1.0'
44
s.summary = 'Library to encode and decode images in WebP format.'
55
s.homepage = 'https://developers.google.com/speed/webp/'
66
s.authors = 'Google Inc.'

0 commit comments

Comments
 (0)