Skip to content
Merged
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
11 changes: 4 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
SQLite driver implementation for the abstract [Feather Database](https://github.com/feather-framework/feather-database) Swift API package.

[
![Release: 1.0.0-beta.3](https://img.shields.io/badge/Release-1%2E0%2E0--beta%2E3-F05138)
![Release: 1.0.0-beta.4](https://img.shields.io/badge/Release-1%2E0%2E0--beta%2E4-F05138)
](
https://github.com/feather-framework/feather-sqlite-database/releases/tag/1.0.0-beta.3
https://github.com/feather-framework/feather-sqlite-database/releases/tag/1.0.0-beta.4
)

## Features
Expand Down Expand Up @@ -36,7 +36,7 @@ SQLite driver implementation for the abstract [Feather Database](https://github.
Add the dependency to your `Package.swift`:

```swift
.package(url: "https://github.com/feather-framework/feather-sqlite-database", exact: "1.0.0-beta.3"),
.package(url: "https://github.com/feather-framework/feather-sqlite-database", exact: "1.0.0-beta.4"),
```

Then add `FeatherSQLiteDatabase` to your target dependencies:
Expand All @@ -45,7 +45,6 @@ Then add `FeatherSQLiteDatabase` to your target dependencies:
.product(name: "FeatherSQLiteDatabase", package: "feather-sqlite-database"),
```

<<<<<<< HEAD
### Package traits

This package offers additional integrations you can enable using [package traits](https://docs.swift.org/swiftpm/documentation/packagemanagerdocs/addingdependencies#Packages-with-Traits).
Expand All @@ -54,7 +53,7 @@ To enable an additional trait on the package, update the package dependency:
```diff
.package(
url: "https://github.com/feather-framework/feather-sqlite-database",
exact: "1.0.0-beta.3",
exact: "1.0.0-beta.4",
+ traits: [
+ .defaults,
+ "ServiceLifecycleSupport",
Expand All @@ -67,8 +66,6 @@ Available traits:
- `ServiceLifecycleSupport` (default): Adds support for `SQLiteClientService`, a `ServiceLifecycle.Service` implementation for managing SQLite clients.


=======
>>>>>>> main
## Usage

API documentation is available at the link below:
Expand Down