Skip to content
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

GA 3.1.1 #3178

Merged
merged 4 commits into from
Jul 26, 2023
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
46 changes: 46 additions & 0 deletions .github/workflows/check_package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Swift Package

on:
pull_request:
paths: Package.swift

jobs:
build-5_7:
name: Swift 5.7
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
log-public-key: false
- name: Setup Swift 5.7
uses: swift-actions/[email protected]
with:
swift-version: "5.7"
- name: Checkout couchbase-lite-ios-release-verify
run: |
git clone https://github.com/couchbaselabs/couchbase-lite-ios-release-verify.git
- name: Validate
run: |
./couchbase-lite-ios-release-verify/Scripts/verify_spm.sh -b ${{ github.head_ref }} -ce

build-5_8:
name: Swift 5.8
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
log-public-key: false
- name: Setup Swift 5.8
uses: swift-actions/[email protected]
with:
swift-version: "5.8"
- name: Checkout couchbase-lite-ios-release-verify
run: |
git clone https://github.com/couchbaselabs/couchbase-lite-ios-release-verify.git
- name: Validate
run: |
./couchbase-lite-ios-release-verify/Scripts/verify_spm.sh -b ${{ github.head_ref }} -ce
6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import PackageDescription
let package = Package(
name: "CouchbaseLiteSwift",
platforms: [
.iOS(.v10), .macOS(.v10_12)
.iOS(.v11), .macOS(.v10_14)
],
products: [
.library(
Expand All @@ -14,8 +14,8 @@ let package = Package(
targets: [
.binaryTarget(
name: "CouchbaseLiteSwift",
url: "https://packages.couchbase.com/releases/couchbase-lite-ios/3.1.0/couchbase-lite-swift_xc_community_3.1.0.zip",
checksum: "556d6ae41df3b5ebf91dbe45d38214dd7032f97ac1b132f925356d20e3b9ada5"
url: "https://packages.couchbase.com/releases/couchbase-lite-ios/3.1.1/couchbase-lite-swift_xc_community_3.1.1.zip",
checksum: "bbee6e7f554285ed58dfee06122ba4124b11e7188ce0271db440c253ba278163"
)
]
)
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Couchbase Lite implementation is on top of [Couchbase Lite Core](https://github.
dependencies: [
.package(name: "CouchbaseLiteSwift",
url: "https://github.com/couchbase/couchbase-lite-ios.git",
from: "3.1.0"),
from: "3.1.1"),
],
```

Expand All @@ -31,7 +31,7 @@ dependencies: [
dependencies: [
.package(name: "CouchbaseLiteSwift",
url: "https://github.com/couchbase/couchbase-lite-swift-ee.git",
from: "3.1.0"),
from: "3.1.1"),
],
```

Expand Down
Loading