瀏覽代碼

Version 2.7.2

Robert M. Ryan 8 年之前
父節點
當前提交
d1fc235264
共有 5 個文件被更改,包括 9 次插入5 次删除
  1. 5 1
      CHANGES_AND_TODO_LIST.txt
  2. 1 1
      FMDB.podspec
  3. 1 1
      Tests/FMDatabaseTests.m
  4. 1 1
      src/fmdb/FMDatabase.m
  5. 1 1
      src/fmdb/Info.plist

+ 5 - 1
CHANGES_AND_TODO_LIST.txt

@@ -4,8 +4,12 @@ Zip, nada, zilch.  Got any ideas?
 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 gus@flyingmeat.com.
 
 
-2017.06.01 Version 2.7.1
+2017.06.01 Version 2.7.2
+    Make blocks `nonescaping` (thanks to @benasher44)
+
+    Update method documentation.
 
+2017.06.01 Version 2.7.1
     Adjust `valueLong` return type and `resultLong` parameter to suppress warning.
 
     Fix pointer comparison to avoid static analysis warning in `columnIndexForName`.

+ 1 - 1
FMDB.podspec

@@ -1,6 +1,6 @@
 Pod::Spec.new do |s|
   s.name = 'FMDB'
-  s.version = '2.7.1'
+  s.version = '2.7.2'
   s.summary = 'A Cocoa / Objective-C wrapper around SQLite.'
   s.homepage = 'https://github.com/ccgus/fmdb'
   s.license = 'MIT'

+ 1 - 1
Tests/FMDatabaseTests.m

@@ -1125,7 +1125,7 @@ - (void)createCustomFunctions {
 }
 
 - (void)testVersionNumber {
-    XCTAssertTrue([FMDatabase FMDBVersion] == 0x0271); // this is going to break everytime we bump it.
+    XCTAssertTrue([FMDatabase FMDBVersion] == 0x0272); // this is going to break everytime we bump it.
 }
 
 - (void)testExecuteStatements {

+ 1 - 1
src/fmdb/FMDatabase.m

@@ -98,7 +98,7 @@ - (NSURL *)databaseURL {
 }
 
 + (NSString*)FMDBUserVersion {
-    return @"2.7.1";
+    return @"2.7.2";
 }
 
 // returns 0x0240 for version 2.4.  This makes it super easy to do things like:

+ 1 - 1
src/fmdb/Info.plist

@@ -15,7 +15,7 @@
 	<key>CFBundlePackageType</key>
 	<string>FMWK</string>
 	<key>CFBundleShortVersionString</key>
-	<string>2.7.0</string>
+	<string>2.7.2</string>
 	<key>CFBundleSignature</key>
 	<string>????</string>
 	<key>CFBundleVersion</key>