Skip to content

Commit

Permalink
Update Swift Package and Podspecs to 3.1.3 (#3202)
Browse files Browse the repository at this point in the history
* Swift Package, Podspecs and README
  • Loading branch information
velicuvlad authored Nov 21, 2023
1 parent 4f5eb15 commit dcc7f86
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions CouchbaseLite-Swift.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'CouchbaseLite-Swift'
s.version = '3.1.0'
s.version = '3.1.3'
s.license = 'Apache License, Version 2.0'
s.homepage = 'https://github.com/couchbase/couchbase-lite-ios'
s.summary = 'An embedded syncable NoSQL database for iOS and MacOS apps.'
Expand All @@ -17,6 +17,6 @@ Pod::Spec.new do |s|
s.osx.preserve_paths = 'frameworks/CBL_Swift/macOS/CouchbaseLiteSwift.framework'
s.osx.vendored_frameworks = 'frameworks/CBL_Swift/macOS/CouchbaseLiteSwift.framework'

s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.11'
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.14'
end
6 changes: 3 additions & 3 deletions CouchbaseLite.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'CouchbaseLite'
s.version = '3.1.0'
s.version = '3.1.3'
s.license = 'Apache License, Version 2.0'
s.homepage = 'https://github.com/couchbase/couchbase-lite-ios'
s.summary = 'An embedded syncable NoSQL database for iOS and MacOS apps.'
Expand All @@ -17,6 +17,6 @@ Pod::Spec.new do |s|
s.osx.preserve_paths = 'frameworks/CBL_ObjC/macOS/CouchbaseLite.framework'
s.osx.vendored_frameworks = 'frameworks/CBL_ObjC/macOS/CouchbaseLite.framework'

s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.11'
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.14'
end
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ let package = Package(
targets: [
.binaryTarget(
name: "CouchbaseLiteSwift",
url: "https://packages.couchbase.com/releases/couchbase-lite-ios/3.1.1/couchbase-lite-swift_xc_community_3.1.1.zip",
checksum: "bbee6e7f554285ed58dfee06122ba4124b11e7188ce0271db440c253ba278163"
url: "https://packages.couchbase.com/releases/couchbase-lite-ios/3.1.3/couchbase-lite-swift_xc_community_3.1.3.zip",
checksum: "37191fbfe5319f1a3e18bb625891f940d2067d6c02bb18e0158cf0a95ab373cd"
)
]
)
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.1"),
from: "3.1.3"),
],
```

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

Expand Down

0 comments on commit dcc7f86

Please sign in to comment.