Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
61bb2dd
Fix for ~= operator used with Double ranges
jberkel Oct 20, 2016
14c0a48
Tag as discardable
jberkel Oct 20, 2016
26ef259
Test String ranges
jberkel Oct 20, 2016
6a5e1ed
Merge branch 'master' into prepare-0.11.1
jberkel Oct 20, 2016
d95a518
Bump version
jberkel Oct 21, 2016
f58ebbf
Update CocoaPods doc
jberkel Nov 8, 2016
2d059b0
Docs: restore migration information
jberkel Nov 8, 2016
bf6a722
Add missing boilerplate
jberkel Nov 8, 2016
d784548
Fix link target
jberkel Nov 8, 2016
8b960d4
Tell users to perform a repo update when installing pods
jberkel Nov 10, 2016
c2f3fc8
Link to SQLiteMigrationManager.swift now that it is Swift3 compatible
jberkel Nov 12, 2016
6e30a3d
Add config file for CocoaDocs
jberkel Nov 12, 2016
6b78409
Mention FTS5 query differences in docs
jberkel Nov 15, 2016
75394da
Make lastInsertRowid consistent with other SQLite wrappers
jberkel Nov 15, 2016
c748006
Add changelog
jberkel Nov 15, 2016
fbea9bf
Retry failed builds
jberkel Nov 15, 2016
095026d
Add missing imports
jberkel Nov 15, 2016
e177a1d
Switch to released CocoaPods version
jberkel Nov 15, 2016
bb3b705
public check method, needed for #389
jberkel Nov 16, 2016
6b8661a
Try out xcode 8.1
jberkel Nov 16, 2016
433d247
Xcode 8.2
jberkel Nov 20, 2016
fbf994a
Specify destination
jberkel Nov 20, 2016
6e53f36
Use 6s
jberkel Nov 20, 2016
cbf5e0e
Remove travis_retry workaround
jberkel Nov 20, 2016
f23969f
Specify iOS version
jberkel Nov 20, 2016
2e6e3c9
Remove env
jberkel Nov 20, 2016
3472f4e
Split testing into separate commands
jberkel Dec 4, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Bump version
  • Loading branch information
jberkel committed Oct 21, 2016
commit d95a518178570c805bb18b971d264b8a48edbcf5
8 changes: 4 additions & 4 deletions Documentation/Index.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ install SQLite.swift with Carthage:
2. Update your Cartfile to include the following:

```
github "stephencelis/SQLite.swift" ~> 0.11.0
github "stephencelis/SQLite.swift" ~> 0.11.1
```

3. Run `carthage update` and [add the appropriate framework][Carthage Usage].
Expand Down Expand Up @@ -108,7 +108,7 @@ install SQLite.swift with Carthage:
``` ruby
use_frameworks!

pod 'SQLite.swift', '~> 0.11.0'
pod 'SQLite.swift', '~> 0.11.1'
```

4. Run `pod install`.
Expand All @@ -119,13 +119,13 @@ install SQLite.swift with Carthage:
If you want to use a more recent version of SQLite than what is provided with the OS you can require the `standalone` subspec:

``` ruby
pod 'SQLite.swift/standalone', '~> 0.11.0'
pod 'SQLite.swift/standalone', '~> 0.11.1'
```

By default this will use the most recent version of SQLite without any extras. If you want you can further customize this by adding another dependency to sqlite3 or one of its subspecs:

``` ruby
pod 'SQLite.swift/standalone', '~> 0.11.0'
pod 'SQLite.swift/standalone', '~> 0.11.1'
pod 'sqlite3/fts5', '= 3.15.0' # SQLite 3.15.0 with FTS5 enabled
```

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ install SQLite.swift with Carthage:
2. Update your Cartfile to include the following:

```
github "stephencelis/SQLite.swift" ~> 0.11.0
github "stephencelis/SQLite.swift" ~> 0.11.1
```

3. Run `carthage update` and [add the appropriate framework][Carthage Usage].
Expand Down Expand Up @@ -159,7 +159,7 @@ SQLite.swift with CocoaPods:
``` ruby
use_frameworks!

pod 'SQLite.swift', '~> 0.11.0'
pod 'SQLite.swift', '~> 0.11.1'
```

3. Run `pod install`.
Expand Down
2 changes: 1 addition & 1 deletion SQLite.swift.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "SQLite.swift"
s.version = "0.11.0"
s.version = "0.11.1"
s.summary = "A type-safe, Swift-language layer over SQLite3 for iOS and OS X."

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion SQLite/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.11.0</string>
<string>0.11.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down