Merge pull request #306 from nemesis/patch-1

Bump version in README.markdown
This commit is contained in:
August "Gus" Mueller 2014-10-03 09:48:20 -07:00
commit f6f96d44bf

View File

@ -1,4 +1,4 @@
# FMDB v2.3
# FMDB v2.4
This is an Objective-C wrapper around SQLite: http://sqlite.org/
## The FMDB Mailing List:
@ -21,7 +21,10 @@ FMDB can be installed using [CocoaPods](http://cocoapods.org/).
```
pod 'FMDB'
# pod 'FMDB/SQLCipher' # If using FMDB with SQLCipher
# pod 'FMDB/FTS' # FMDB with FTS
# pod 'FMDB/standalone' # FMDB with latest SQLite amalgamation source
# pod 'FMDB/standalone/FTS' # FMDB with latest SQLite amalgamation source and FTS
# pod 'FMDB/SQLCipher' # FMDB with SQLCipher
```
**If using FMDB with [SQLCipher](http://sqlcipher.net/) you must use the FMDB/SQLCipher subspec. The FMDB/SQLCipher subspec declares SQLCipher as a dependency, allowing FMDB to be compiled with the `-DSQLITE_HAS_CODEC` flag.**
@ -136,7 +139,6 @@ success = [self.db executeStatements:sql withResultBlock:^int(NSDictionary *dict
XCTAssertEqual(count, 1, @"expected one record for dictionary %@", dictionary);
return 0;
}];
```
### Data Sanitization