Skip to content

Commit d1fc235

Browse files
committed
Version 2.7.2
1 parent 2bdf6b5 commit d1fc235

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

CHANGES_AND_TODO_LIST.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,12 @@ Zip, nada, zilch. Got any ideas?
44
If you would like to contribute some code ... awesome! I just ask that you make it conform to the coding conventions already set in here, and to add the necessary of tests for your new code to tests target. And of course, the code should be of general use to more than just a couple of folks. Send your patches to [email protected].
55

66

7-
2017.06.01 Version 2.7.1
7+
2017.06.01 Version 2.7.2
8+
Make blocks `nonescaping` (thanks to @benasher44)
9+
10+
Update method documentation.
811

12+
2017.06.01 Version 2.7.1
913
Adjust `valueLong` return type and `resultLong` parameter to suppress warning.
1014

1115
Fix pointer comparison to avoid static analysis warning in `columnIndexForName`.

FMDB.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FMDB'
3-
s.version = '2.7.1'
3+
s.version = '2.7.2'
44
s.summary = 'A Cocoa / Objective-C wrapper around SQLite.'
55
s.homepage = 'https://github.com/ccgus/fmdb'
66
s.license = 'MIT'

Tests/FMDatabaseTests.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1125,7 +1125,7 @@ - (void)createCustomFunctions {
11251125
}
11261126

11271127
- (void)testVersionNumber {
1128-
XCTAssertTrue([FMDatabase FMDBVersion] == 0x0271); // this is going to break everytime we bump it.
1128+
XCTAssertTrue([FMDatabase FMDBVersion] == 0x0272); // this is going to break everytime we bump it.
11291129
}
11301130

11311131
- (void)testExecuteStatements {

src/fmdb/FMDatabase.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ - (NSURL *)databaseURL {
9898
}
9999

100100
+ (NSString*)FMDBUserVersion {
101-
return @"2.7.1";
101+
return @"2.7.2";
102102
}
103103

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

src/fmdb/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>2.7.0</string>
18+
<string>2.7.2</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)