Skip to content

0.11.5 #798

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 14, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Empty file removed .gitmodules
Empty file.
2 changes: 1 addition & 1 deletion .swift-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0
4.1
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
0.11.5 (04-14-2018), [diff][diff-0.11.5]
========================================

* Swift 4.1 ([#797][])

0.11.4 (30-09-2017), [diff][diff-0.11.4]
========================================

Expand Down Expand Up @@ -51,6 +56,7 @@
[diff-0.11.2]: https://github.com/stephencelis/SQLite.swift/compare/0.11.1...0.11.2
[diff-0.11.3]: https://github.com/stephencelis/SQLite.swift/compare/0.11.2...0.11.3
[diff-0.11.4]: https://github.com/stephencelis/SQLite.swift/compare/0.11.3...0.11.4
[diff-0.11.5]: https://github.com/stephencelis/SQLite.swift/compare/0.11.4...0.11.5

[#142]: https://github.com/stephencelis/SQLite.swift/issues/142
[#315]: https://github.com/stephencelis/SQLite.swift/issues/315
Expand Down Expand Up @@ -81,3 +87,4 @@
[#723]: https://github.com/stephencelis/SQLite.swift/pull/723
[#733]: https://github.com/stephencelis/SQLite.swift/pull/733
[#726]: https://github.com/stephencelis/SQLite.swift/pull/726
[#797]: https://github.com/stephencelis/SQLite.swift/pull/797
16 changes: 8 additions & 8 deletions Documentation/Index.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@

## Installation

> _Note:_ SQLite.swift requires Swift 4 (and
> [Xcode 9](https://developer.apple.com/xcode/downloads/)) or greater.
> _Note:_ SQLite.swift requires Swift 4.1 (and
> [Xcode 9.3](https://developer.apple.com/xcode/downloads/)) or greater.


### Carthage
Expand All @@ -80,7 +80,7 @@ install SQLite.swift with Carthage:
2. Update your Cartfile to include the following:

```ruby
github "stephencelis/SQLite.swift" ~> 0.11.4
github "stephencelis/SQLite.swift" ~> 0.11.5
```

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

target 'YourAppTargetName' do
pod 'SQLite.swift', '~> 0.11.4'
pod 'SQLite.swift', '~> 0.11.5'
end
```

Expand All @@ -124,7 +124,7 @@ with the OS you can require the `standalone` subspec:

```ruby
target 'YourAppTargetName' do
pod 'SQLite.swift/standalone', '~> 0.11.4'
pod 'SQLite.swift/standalone', '~> 0.11.5'
end
```

Expand All @@ -134,7 +134,7 @@ dependency to sqlite3 or one of its subspecs:

```ruby
target 'YourAppTargetName' do
pod 'SQLite.swift/standalone', '~> 0.11.4'
pod 'SQLite.swift/standalone', '~> 0.11.5'
pod 'sqlite3/fts5', '= 3.15.0' # SQLite 3.15.0 with FTS5 enabled
end
```
Expand All @@ -148,7 +148,7 @@ If you want to use [SQLCipher][] with SQLite.swift you can require the

```ruby
target 'YourAppTargetName' do
pod 'SQLite.swift/SQLCipher', '~> 0.11.4'
pod 'SQLite.swift/SQLCipher', '~> 0.11.5'
end
```

Expand Down Expand Up @@ -181,7 +181,7 @@ applications.

```swift
dependencies: [
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.11.4")
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.11.5")
]
```

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ and the [companion repository][SQLiteDataAccessLayer2].

## Installation

> _Note:_ SQLite.swift requires Swift 4 (and [Xcode][] 9).
> _Note:_ SQLite.swift requires Swift 4.1 (and [Xcode][] 9.3).

### Carthage

Expand All @@ -124,7 +124,7 @@ install SQLite.swift with Carthage:
2. Update your Cartfile to include the following:

```ruby
github "stephencelis/SQLite.swift" ~> 0.11.4
github "stephencelis/SQLite.swift" ~> 0.11.5
```

3. Run `carthage update` and
Expand Down Expand Up @@ -156,7 +156,7 @@ SQLite.swift with CocoaPods:
use_frameworks!

target 'YourAppTargetName' do
pod 'SQLite.swift', '~> 0.11.4'
pod 'SQLite.swift', '~> 0.11.5'
end
```

Expand All @@ -174,7 +174,7 @@ Swift code.

```swift
dependencies: [
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.11.4")
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.11.5")
]
```

Expand Down Expand Up @@ -285,7 +285,7 @@ Looking for something else? Try another Swift wrapper (or [FMDB][]):
[GitterBadge]: https://badges.gitter.im/stephencelis/SQLite.swift.svg
[GitterLink]: https://gitter.im/stephencelis/SQLite.swift

[Swift4Badge]: https://img.shields.io/badge/swift-4-orange.svg?style=flat
[Swift4Badge]: https://img.shields.io/badge/swift-4.1-orange.svg?style=flat
[Swift4Link]: https://developer.apple.com/swift/

[SQLiteMigrationManager.swift]: https://github.com/garriguv/SQLiteMigrationManager.swift
Expand Down
4 changes: 2 additions & 2 deletions 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.4"
s.version = "0.11.5"
s.summary = "A type-safe, Swift-language layer over SQLite3 for iOS and OS X."

s.description = <<-DESC
Expand All @@ -21,7 +21,7 @@ Pod::Spec.new do |s|
s.watchos.deployment_target = "2.2"
s.default_subspec = 'standard'
s.pod_target_xcconfig = {
'SWIFT_VERSION' => '4.0',
'SWIFT_VERSION' => '4.1',
}

s.subspec 'standard' do |ss|
Expand Down