Skip to content

Commit

Permalink
bugfix and bumping the version to 0.9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ibireme committed Dec 1, 2015
1 parent e6ae55d commit 8c39586
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Framework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.9.5</string>
<string>0.9.6</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion YYKit.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = 'YYKit'
s.summary = 'A collection of iOS components.'
s.version = '0.9.5'
s.version = '0.9.6'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { 'ibireme' => '[email protected]' }
s.social_media_url = 'http://blog.ibireme.com'
Expand Down
2 changes: 1 addition & 1 deletion YYKit/Cache/YYDiskCache.m
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ - (void)_trimInBackground {
__strong typeof(_self) self = _self;
if (!self) return;
dispatch_semaphore_wait(self->_lock, DISPATCH_TIME_FOREVER);
[self _trimToCost:self.countLimit];
[self _trimToCost:self.costLimit];
[self _trimToCount:self.countLimit];
[self _trimToAge:self.ageLimit];
[self _trimToFreeDiskSpace:self.freeDiskSpaceLimit];
Expand Down

0 comments on commit 8c39586

Please sign in to comment.