Skip to content

Commit

Permalink
bump version to 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kevindelord committed Jun 16, 2014
1 parent addd056 commit 99091b5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# DKDBManager CHANGELOG

## 0.2.1

- remove minor warning

## 0.2.0

- Improve log methods
Expand Down
2 changes: 1 addition & 1 deletion DKDBManager.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "DKDBManager"
s.version = "0.2.0"
s.version = "0.2.1"
s.summary = "Database manager to use around MagicalRecord to provide a complete CRUD logic for your entities."
s.homepage = "https://github.com/kevindelord/DKDBManager"
s.license = 'MIT'
Expand Down
2 changes: 1 addition & 1 deletion DKDBManager/DKDBManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ + (void)dump {
Class class = NSClassFromString(className);
if (class.verbose) {
for (id entity in class.all)
DKLog(self.verbose, @"%@ %@", className, entity);
NSLog(@"%@ %@", className, entity);
DKLog(self.verbose, @"-------------------------------------");
}
}
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.0
0.2.1

0 comments on commit 99091b5

Please sign in to comment.