Skip to content

Commit 1d2eef2

Browse files
authored
Merge pull request #725 from stephencelis/release
0.11.4
2 parents ec7b589 + 9d8a8e5 commit 1d2eef2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+2350
-1071
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
> Issues are used to track bugs and feature requests.
2+
> Need help or have a general question? Ask on Stack Overflow (tag sqlite.swift).
3+
4+
## Build Information
5+
6+
- Include the SQLite.swift version, commit or branch experiencing the issue.
7+
- Mention Xcode and OS X versions affected.
8+
- How do do you integrate SQLite.swift in your project?
9+
- manual
10+
- CocoaPods
11+
- Carthage
12+
- Swift Package manager
13+
14+
## General guidelines
15+
16+
- Be as descriptive as possible.
17+
- Provide as much information needed to _reliably reproduce_ the issue.
18+
- Attach screenshots if possible.
19+
- Better yet: attach GIFs or link to video.
20+
- Even better: link to a sample project exhibiting the issue.

.swift-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0
1+
4.0

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
language: objective-c
2-
rvm: 2.2
3-
osx_image: xcode8.3
2+
rvm: 2.3
3+
osx_image: xcode9
44
env:
55
global:
66
- IOS_SIMULATOR="iPhone 6s"
7-
- IOS_VERSION="10.3.1"
7+
- IOS_VERSION="11.0"
88
matrix:
99
include:
1010
- env: BUILD_SCHEME="SQLite iOS"
@@ -17,7 +17,7 @@ matrix:
1717
- env: CARTHAGE_PLATFORM="Mac"
1818
- env: CARTHAGE_PLATFORM="watchOS"
1919
- env: CARTHAGE_PLATFORM="tvOS"
20-
- env: PACKAGE_MANAGER_COMMAND="test -Xlinker -lsqlite3"
20+
- env: PACKAGE_MANAGER_COMMAND="test"
2121
before_install:
2222
- gem update bundler
2323
- gem install xcpretty --no-document

CHANGELOG.md

Lines changed: 41 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,25 @@
1+
0.11.4 (30-09-2017), [diff][diff-0.11.4]
2+
========================================
3+
4+
* Collate `.nocase` strictly enforces `NOT NULL` even when using Optional ([#697][])
5+
* Fix transactions not being rolled back when committing fails ([#426][])
6+
* Add possibility to have expression on right hand side of like ([#591][])
7+
* Added Date and Time functions ([#142][])
8+
* Add Swift4 Coding support ([#733][])
9+
* Preliminary Linux support ([#315][], [#681][])
10+
* Add `RowIterator` for more safety ([#647][], [#726][])
11+
* Make `Row.get` throw instead of crash ([#649][])
12+
* Fix create/drop index functions ([#666][])
13+
* Revert deployment target to 8.0 ([#625][], [#671][], [#717][])
14+
* Added support for the union query clause ([#723][])
15+
* Add support for `ORDER` and `LIMIT` on `UPDATE` and `DELETE` ([#657][], [#722][])
16+
* Swift 4 support ([#668][])
17+
118
0.11.3 (30-03-2017), [diff][diff-0.11.3]
219
========================================
320

421
* Fix compilation problems when using Carthage ([#615][])
5-
* Add "WITHOUT ROWID" table option ([#541][])
22+
* Add `WITHOUT ROWID` table option ([#541][])
623
* Argument count fixed for binary custom functions ([#481][])
724
* Documentation updates
825
* Tested with Xcode 8.3 / iOS 10.3
@@ -20,7 +37,7 @@
2037

2138
* Integrate SQLCipher via CocoaPods ([#546][], [#553][])
2239
* Made lastInsertRowid consistent with other SQLite wrappers ([#532][])
23-
* Fix for ~= operator used with Double ranges
40+
* Fix for `~=` operator used with Double ranges
2441
* Various documentation updates
2542

2643
0.11.0 (19-10-2016)
@@ -33,15 +50,34 @@
3350
[diff-0.11.1]: https://github.com/stephencelis/SQLite.swift/compare/0.11.0...0.11.1
3451
[diff-0.11.2]: https://github.com/stephencelis/SQLite.swift/compare/0.11.1...0.11.2
3552
[diff-0.11.3]: https://github.com/stephencelis/SQLite.swift/compare/0.11.2...0.11.3
53+
[diff-0.11.4]: https://github.com/stephencelis/SQLite.swift/compare/0.11.3...0.11.4
3654

37-
[#481]: https://github.com/stephencelis/SQLit1e.swift/pull/481
38-
[#532]: https://github.com/stephencelis/SQLit1e.swift/issues/532
39-
[#541]: https://github.com/stephencelis/SQLit1e.swift/issues/541
55+
[#142]: https://github.com/stephencelis/SQLite.swift/issues/142
56+
[#315]: https://github.com/stephencelis/SQLite.swift/issues/315
57+
[#426]: https://github.com/stephencelis/SQLite.swift/pull/426
58+
[#481]: https://github.com/stephencelis/SQLite.swift/pull/481
59+
[#532]: https://github.com/stephencelis/SQLite.swift/issues/532
60+
[#541]: https://github.com/stephencelis/SQLite.swift/issues/541
4061
[#546]: https://github.com/stephencelis/SQLite.swift/issues/546
4162
[#548]: https://github.com/stephencelis/SQLite.swift/pull/548
4263
[#553]: https://github.com/stephencelis/SQLite.swift/pull/553
4364
[#559]: https://github.com/stephencelis/SQLite.swift/pull/559
4465
[#560]: https://github.com/stephencelis/SQLite.swift/pull/560
4566
[#561]: https://github.com/stephencelis/SQLite.swift/issues/561
4667
[#571]: https://github.com/stephencelis/SQLite.swift/issues/571
68+
[#591]: https://github.com/stephencelis/SQLite.swift/pull/591
4769
[#615]: https://github.com/stephencelis/SQLite.swift/pull/615
70+
[#625]: https://github.com/stephencelis/SQLite.swift/issues/625
71+
[#647]: https://github.com/stephencelis/SQLite.swift/pull/647
72+
[#649]: https://github.com/stephencelis/SQLite.swift/pull/649
73+
[#657]: https://github.com/stephencelis/SQLite.swift/issues/657
74+
[#666]: https://github.com/stephencelis/SQLite.swift/pull/666
75+
[#668]: https://github.com/stephencelis/SQLite.swift/pull/668
76+
[#671]: https://github.com/stephencelis/SQLite.swift/issues/671
77+
[#681]: https://github.com/stephencelis/SQLite.swift/issues/681
78+
[#697]: https://github.com/stephencelis/SQLite.swift/issues/697
79+
[#717]: https://github.com/stephencelis/SQLite.swift/issues/717
80+
[#722]: https://github.com/stephencelis/SQLite.swift/pull/722
81+
[#723]: https://github.com/stephencelis/SQLite.swift/pull/723
82+
[#733]: https://github.com/stephencelis/SQLite.swift/pull/733
83+
[#726]: https://github.com/stephencelis/SQLite.swift/pull/726

CocoaPods/appletvos/module.modulemap

Lines changed: 0 additions & 4 deletions
This file was deleted.

CocoaPods/appletvsimulator/module.modulemap

Lines changed: 0 additions & 4 deletions
This file was deleted.

CocoaPods/iphoneos-10.0/module.modulemap

Lines changed: 0 additions & 4 deletions
This file was deleted.

CocoaPods/iphoneos/module.modulemap

Lines changed: 0 additions & 4 deletions
This file was deleted.

CocoaPods/iphonesimulator-10.0/module.modulemap

Lines changed: 0 additions & 4 deletions
This file was deleted.

CocoaPods/iphonesimulator/module.modulemap

Lines changed: 0 additions & 4 deletions
This file was deleted.

CocoaPods/macosx-10.11/module.modulemap

Lines changed: 0 additions & 4 deletions
This file was deleted.

CocoaPods/macosx-10.12/module.modulemap

Lines changed: 0 additions & 4 deletions
This file was deleted.

CocoaPods/macosx/module.modulemap

Lines changed: 0 additions & 4 deletions
This file was deleted.

CocoaPods/watchos/module.modulemap

Lines changed: 0 additions & 4 deletions
This file was deleted.

CocoaPods/watchsimulator/module.modulemap

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)