Skip to content

Commit

Permalink
Bumped version to 0.2.0
Browse files Browse the repository at this point in the history
Update the readme
  • Loading branch information
dreampiggy committed Apr 2, 2019
1 parent 75ba258 commit f4dd0c5
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 10 deletions.
12 changes: 6 additions & 6 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
PODS:
- Expecta (1.0.6)
- SDWebImage/Core (5.0.0)
- SDWebImageYYPlugin (0.1.2):
- SDWebImageYYPlugin (0.2.0):
- SDWebImage/Core (~> 5.0)
- SDWebImageYYPlugin/YYCache (= 0.1.2)
- SDWebImageYYPlugin/YYImage (= 0.1.2)
- SDWebImageYYPlugin/YYCache (0.1.2):
- SDWebImageYYPlugin/YYCache (= 0.2.0)
- SDWebImageYYPlugin/YYImage (= 0.2.0)
- SDWebImageYYPlugin/YYCache (0.2.0):
- SDWebImage/Core (~> 5.0)
- YYCache
- SDWebImageYYPlugin/YYImage (0.1.2):
- SDWebImageYYPlugin/YYImage (0.2.0):
- SDWebImage/Core (~> 5.0)
- YYImage/Core
- YYCache (1.0.4)
Expand All @@ -35,7 +35,7 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
Expecta: 3b6bd90a64b9a1dcb0b70aa0e10a7f8f631667d5
SDWebImage: 5de80a0302de9e377e62f47d2fa1304efff0e55f
SDWebImageYYPlugin: c1605568e15862da02e4e63793db5c1b35c1416c
SDWebImageYYPlugin: 3398b1f1016cd30d8fdb857226c254a0da8b1a11
YYCache: 8105b6638f5e849296c71f331ff83891a4942952
YYImage: 1e1b62a9997399593e4b9c4ecfbbabbf1d3f3b54

Expand Down
3 changes: 3 additions & 0 deletions Example/SDWebImageYYPlugin/SDViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ @implementation SDViewController
- (void)viewDidLoad
{
[super viewDidLoad];
// Setup YYCache to default cache
SDWebImageManager.defaultImageCache = [[YYCache alloc] initWithName:@"YYCache"];

[self.view addSubview:self.imageView];

NSURL *url = [NSURL URLWithString:@"http://apng.onevcat.com/assets/elephant.png"];
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ To enable `YYCache` instead of `SDImageCache`, you can bind the cache for shared

```objectivec
// Use `YYCache` for shared manager
SDWebImageManger.defaultImageCache = [YYCache cacheWithName:@"default"];
SDWebImageManger.defaultImageCache = [YYCache cacheWithName:@"name"];
```
+ Swift
Expand Down
2 changes: 1 addition & 1 deletion SDWebImageYYPlugin.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'SDWebImageYYPlugin'
s.version = '0.1.2'
s.version = '0.2.0'
s.summary = 'A SDWebImage plugin to integrate YYImage & YYCache for image rendering & caching.'

# This description is used to generate tags and improve search results.
Expand Down
4 changes: 2 additions & 2 deletions SDWebImageYYPlugin/Module/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.1.2</string>
<string>0.2.0</string>
<key>CFBundleVersion</key>
<string>0.1.2</string>
<string>0.2.0</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
Expand Down

0 comments on commit f4dd0c5

Please sign in to comment.