Skip to content

Commit 856b126

Browse files
committed
Rename
1 parent 295ae75 commit 856b126

File tree

4 files changed

+16
-12
lines changed

4 files changed

+16
-12
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: swift-sqlite ci
1+
name: swift-sqlcipher ci
22
on:
33
push:
44
branches: [ main ]

Documentation/Index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# swift-sqlite Documentation
1+
# swift-sqlcipher Documentation
22

3-
- [swift-sqlite Documentation](#sqliteswift-documentation)
3+
- [swift-sqlcipher Documentation](#sqliteswift-documentation)
44
- [Installation](#installation)
55
- [Swift Package Manager](#swift-package-manager)
66
- [Getting Started](#getting-started)
@@ -103,7 +103,7 @@ process of downloading, compiling, and linking dependencies.
103103

104104
```swift
105105
dependencies: [
106-
.package(url: "https://github.com/skiptools/swift-sqlite.git", from: "1.0.0")
106+
.package(url: "https://github.com/skiptools/swift-sqlcipher.git", from: "1.0.0")
107107
]
108108
```
109109

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import PackageDescription
33

44
let package = Package(
5-
name: "swift-sqlite",
5+
name: "swift-sqlcipher",
66
platforms: [
77
.iOS(.v13),
88
.macOS(.v10_13),

README.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1-
# swift-sqlite
1+
# swift-sqlcipher
22

3-
swift-sqlite is a cross-platform modernization of the [SQLite.swift] project.
3+
swift-sqlcipher is a C source packaging of [SQLite3]
4+
with the [SQLCipher] and [Full-text search] extensions,
5+
along with a [SQLiteDB] Swift package that provides
6+
API parity with the [SQLite.swift] project.
47

5-
It includes [SQLite3] with [Full-text search] and [SQLCipher] extensions,
6-
and works out-of-the-box on macOS, iOS, Linux, Android, and Windows.
8+
It is meant to be a platform-agnostic project and does not presume the presence
9+
of any specific SQLite binary.
10+
It works out-of-the-box on macOS, iOS, Linux, Android, and Windows.
711

812
## Features
913

@@ -119,7 +123,7 @@ Swift code.
119123

120124
```swift
121125
dependencies: [
122-
.package(url: "https://github.com/skiptools/swift-sqlite.git", from "1.0.0")
126+
.package(url: "https://github.com/skiptools/swift-sqlcipher.git", from "1.0.0")
123127
]
124128
```
125129

@@ -140,8 +144,8 @@ Swift code.
140144
- Want to **contribute**? [Submit a pull request][].
141145

142146
[Read the contributing guidelines]: ./CONTRIBUTING.md#contributing
143-
[Open an issue]: https://github.com/skiptools/swift-sqlite/issues/new
144-
[Submit a pull request]: https://github.com/skiptools/swift-sqlite/pulls
147+
[Open an issue]: https://github.com/skiptools/swift-sqlcipher/issues/new
148+
[Submit a pull request]: https://github.com/skiptools/swift-sqlcipher/pulls
145149

146150
## License
147151

0 commit comments

Comments
 (0)