Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ccgus/fmdb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAugust Mueller <gus@flyingmeat.com>2018-09-18 20:18:48 +0300
committerAugust Mueller <gus@flyingmeat.com>2018-09-18 20:18:48 +0300
commit7397e456a68ee344737bf377b1b76ba4fdd7a1fa (patch)
tree5cc9a6075b46a745642c3e09e87fa45af1be2835
parent54062d16e8fe1c603897ff99ea33377811032e48 (diff)
Version bump.2.7.5
-rw-r--r--CHANGES_AND_TODO_LIST.txt5
-rw-r--r--FMDB.podspec2
-rw-r--r--Tests/FMDatabaseTests.m2
-rw-r--r--src/fmdb/FMDatabase.m2
-rw-r--r--src/fmdb/Info.plist2
5 files changed, 9 insertions, 4 deletions
diff --git a/CHANGES_AND_TODO_LIST.txt b/CHANGES_AND_TODO_LIST.txt
index 95cfbec..5494365 100644
--- a/CHANGES_AND_TODO_LIST.txt
+++ b/CHANGES_AND_TODO_LIST.txt
@@ -3,6 +3,11 @@ 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.
+2018.10.23 Version 2.7.5
+ Xcode 10 support. Probably some other stuff over the past year as well.
+
+ Added confidence inspiring release notes. Also the tests pass.
+
2017.10.23 Version 2.7.4
Added support for explicit transactions.
diff --git a/FMDB.podspec b/FMDB.podspec
index bb3e1a1..0871ee0 100644
--- a/FMDB.podspec
+++ b/FMDB.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'FMDB'
- s.version = '2.7.4'
+ s.version = '2.7.5'
s.summary = 'A Cocoa / Objective-C wrapper around SQLite.'
s.homepage = 'https://github.com/ccgus/fmdb'
s.license = 'MIT'
diff --git a/Tests/FMDatabaseTests.m b/Tests/FMDatabaseTests.m
index 448508e..fb30092 100644
--- a/Tests/FMDatabaseTests.m
+++ b/Tests/FMDatabaseTests.m
@@ -1125,7 +1125,7 @@
}
- (void)testVersionNumber {
- XCTAssertTrue([FMDatabase FMDBVersion] == 0x0274); // this is going to break everytime we bump it.
+ XCTAssertTrue([FMDatabase FMDBVersion] == 0x0275); // this is going to break everytime we bump it.
}
- (void)testExecuteStatements {
diff --git a/src/fmdb/FMDatabase.m b/src/fmdb/FMDatabase.m
index 4f22fbc..84d8d68 100644
--- a/src/fmdb/FMDatabase.m
+++ b/src/fmdb/FMDatabase.m
@@ -99,7 +99,7 @@ NS_ASSUME_NONNULL_END
}
+ (NSString*)FMDBUserVersion {
- return @"2.7.4";
+ return @"2.7.5";
}
// returns 0x0240 for version 2.4. This makes it super easy to do things like:
diff --git a/src/fmdb/Info.plist b/src/fmdb/Info.plist
index 1f28e82..2a30f1e 100644
--- a/src/fmdb/Info.plist
+++ b/src/fmdb/Info.plist
@@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
- <string>2.7.4</string>
+ <string>2.7.5</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>