Skip to content

Commit 9af51e2

Browse files
committed
Bump version
1 parent d27a078 commit 9af51e2

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Diff for: Documentation/Index.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ applications.
8484

8585
```swift
8686
dependencies: [
87-
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.12.0")
87+
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.13.0")
8888
]
8989
```
9090

@@ -105,7 +105,7 @@ install SQLite.swift with Carthage:
105105
2. Update your Cartfile to include the following:
106106

107107
```ruby
108-
github "stephencelis/SQLite.swift" ~> 0.12.0
108+
github "stephencelis/SQLite.swift" ~> 0.13.0
109109
```
110110

111111
3. Run `carthage update` and [add the appropriate framework][Carthage Usage].
@@ -135,7 +135,7 @@ install SQLite.swift with Carthage:
135135
use_frameworks!
136136
137137
target 'YourAppTargetName' do
138-
pod 'SQLite.swift', '~> 0.12.0'
138+
pod 'SQLite.swift', '~> 0.13.0'
139139
end
140140
```
141141

@@ -149,7 +149,7 @@ with the OS you can require the `standalone` subspec:
149149

150150
```ruby
151151
target 'YourAppTargetName' do
152-
pod 'SQLite.swift/standalone', '~> 0.12.0'
152+
pod 'SQLite.swift/standalone', '~> 0.13.0'
153153
end
154154
```
155155

@@ -159,7 +159,7 @@ dependency to sqlite3 or one of its subspecs:
159159

160160
```ruby
161161
target 'YourAppTargetName' do
162-
pod 'SQLite.swift/standalone', '~> 0.12.0'
162+
pod 'SQLite.swift/standalone', '~> 0.13.0'
163163
pod 'sqlite3/fts5', '= 3.15.0' # SQLite 3.15.0 with FTS5 enabled
164164
end
165165
```
@@ -173,7 +173,7 @@ If you want to use [SQLCipher][] with SQLite.swift you can require the
173173

174174
```ruby
175175
target 'YourAppTargetName' do
176-
pod 'SQLite.swift/SQLCipher', '~> 0.12.0'
176+
pod 'SQLite.swift/SQLCipher', '~> 0.13.0'
177177
end
178178
```
179179

Diff for: SQLite.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1265,7 +1265,7 @@
12651265
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
12661266
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
12671267
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1268-
MARKETING_VERSION = 0.12.3;
1268+
MARKETING_VERSION = 0.13.0;
12691269
PRODUCT_BUNDLE_IDENTIFIER = com.stephencelis.SQLite;
12701270
PRODUCT_NAME = SQLite;
12711271
SKIP_INSTALL = YES;
@@ -1287,7 +1287,7 @@
12871287
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
12881288
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
12891289
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1290-
MARKETING_VERSION = 0.12.3;
1290+
MARKETING_VERSION = 0.13.0;
12911291
PRODUCT_BUNDLE_IDENTIFIER = com.stephencelis.SQLite;
12921292
PRODUCT_NAME = SQLite;
12931293
SKIP_INSTALL = YES;

0 commit comments

Comments
 (0)