Skip to content

Commit

Permalink
GA 3.1.1 (#3178)
Browse files Browse the repository at this point in the history
* package update

* package validation - port

* readme update
  • Loading branch information
velicuvlad authored Jul 26, 2023
1 parent 209dd79 commit 893fa3c
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 5 deletions.
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

0 comments on commit 893fa3c

Please sign in to comment.