Bumped version to 1.1.0
This commit is contained in:
parent
e04c3d78a2
commit
86c1b5d567
|
@ -50,12 +50,15 @@ let package = Package(
|
|||
|
||||
Use libwebp as you would normally, this is just a repo that adds an Xcode proj.
|
||||
|
||||
For Swift Package Manager user, use the modular import instead of C headers.
|
||||
For Swift Package Manager user, it's recommended to use the modular import instead of C headers.
|
||||
|
||||
+ Objective-C
|
||||
|
||||
```objective-c
|
||||
@import libwebp;
|
||||
// or if you don't use module
|
||||
#import <webp/decode.h>
|
||||
#import <webp/encode.h>
|
||||
```
|
||||
|
||||
+ Swift
|
||||
|
|
|
@ -15,9 +15,9 @@
|
|||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.1.0-rc2</string>
|
||||
<string>1.1.0</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.1.0-rc2</string>
|
||||
<string>1.1.0</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string></string>
|
||||
</dict>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'libwebp'
|
||||
s.version = '1.1.0-rc2'
|
||||
s.version = '1.1.0'
|
||||
s.summary = 'Library to encode and decode images in WebP format.'
|
||||
s.homepage = 'https://developers.google.com/speed/webp/'
|
||||
s.authors = 'Google Inc.'
|
||||
|
|
Loading…
Reference in New Issue