Skip to content

Commit 76375f7

Browse files
committed
Release 0.5.1.
1 parent a8839f8 commit 76375f7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

DBDebugToolkit.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = 'DBDebugToolkit'
11-
s.version = '0.5.0'
11+
s.version = '0.5.1'
1212
s.summary = 'Set of easy to use debugging tools for iOS developers & QA engineers.'
1313

1414
# This description is used to generate tags and improve search results.

DBDebugToolkit/Classes/Network/DBNetworkToolkit.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ - (void)setLoggingEnabled:(BOOL)loggingEnabled {
7878

7979
- (void)resetLoggedData {
8080
[self.operationQueue addOperationWithBlock:^{
81-
_requests = [NSMutableArray array];
82-
_runningRequestsModels = [NSMapTable strongToWeakObjectsMapTable];
81+
self->_requests = [NSMutableArray array];
82+
self->_runningRequestsModels = [NSMapTable strongToWeakObjectsMapTable];
8383
[self removeOldSavedRequests];
8484
}];
8585
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ The setup with a separate target for App Store releases will help you prevent se
191191

192192
To integrate DBDebugToolkit into your Xcode project using Carthage, specify it in your Cartfile:
193193
```ruby
194-
github "dbukowski/DBDebugToolkit" ~> 0.5.0
194+
github "dbukowski/DBDebugToolkit" ~> 0.5.1
195195
```
196196
Run carthage update to build the framework and drag the built DBDebugToolkit.framework into your Xcode project.
197197

0 commit comments

Comments
 (0)