Skip to content

Commit

Permalink
version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
ccgus committed Jan 24, 2015
1 parent 11ef325 commit 70dd7f7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.markdown
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# FMDB v2.4
# FMDB v2.5
This is an Objective-C wrapper around SQLite: http://sqlite.org/

## The FMDB Mailing List:
Expand Down
2 changes: 1 addition & 1 deletion Tests/FMDatabaseTests.m
Original file line number Diff line number Diff line change
Expand Up @@ -814,7 +814,7 @@ - (void)testCustomFunction
}

- (void)testVersionNumber {
XCTAssertTrue([FMDatabase FMDBVersion] == 0x0240); // this is going to break everytime we bump it.
XCTAssertTrue([FMDatabase FMDBVersion] == 0x0250); // this is going to break everytime we bump it.
}

- (void)testExecuteStatements
Expand Down
2 changes: 1 addition & 1 deletion src/fmdb/FMDatabase.m
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ - (NSString *)databasePath {
}

+ (NSString*)FMDBUserVersion {
return @"2.4";
return @"2.5";
}

// returns 0x0240 for version 2.4. This makes it super easy to do things like:
Expand Down

0 comments on commit 70dd7f7

Please sign in to comment.