From ceb2047bf2a7596097e9489d81239f40be1e9b63 Mon Sep 17 00:00:00 2001 From: Pasin Suriyentrakorn Date: Fri, 6 Apr 2018 00:45:03 -0700 Subject: [PATCH] Update version in README and podspec to 2.0.0 --- CouchbaseLite.podspec | 2 +- CouchbaseLiteSwift.podspec | 2 +- README.md | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CouchbaseLite.podspec b/CouchbaseLite.podspec index 3e310a4e5..cb74ed1e5 100644 --- a/CouchbaseLite.podspec +++ b/CouchbaseLite.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'CouchbaseLite' - s.version = '2.0DB021' + s.version = '2.0.0' s.license = 'Apache License, Version 2.0' s.homepage = 'http://mobile.couchbase.com' s.summary = 'An embedded syncable NoSQL database for iOS and MacOS apps.' diff --git a/CouchbaseLiteSwift.podspec b/CouchbaseLiteSwift.podspec index e7c97f1eb..f757709bc 100644 --- a/CouchbaseLiteSwift.podspec +++ b/CouchbaseLiteSwift.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'CouchbaseLiteSwift' - s.version = '2.0DB021' + s.version = '2.0.0' s.license = 'Apache License, Version 2.0' s.homepage = 'http://mobile.couchbase.com' s.summary = 'An embedded syncable NoSQL database for iOS and MacOS apps.' diff --git a/README.md b/README.md index c6f8a5ef3..f04f628f9 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Couchbase Lite 2.0 has a completely new set of APIs. The implementation is on to ## Requirements - iOS 9.0+ | macOS 10.11+ -- Xcode 9 +- Xcode 9.3 ## Installation @@ -21,7 +21,7 @@ You can use [CocoaPods](https://cocoapods.org/) to install `CouchbaseLite` for O ``` target '' do use_frameworks! - pod 'CouchbaseLite', :git => 'https://github.com/couchbase/couchbase-lite-ios.git', :tag => '2.0DB023', :submodules => true + pod 'CouchbaseLite', '~> 2.0.0' end ``` @@ -29,7 +29,7 @@ end ``` target '' do use_frameworks! - pod 'CouchbaseLiteSwift', :git => 'https://github.com/couchbase/couchbase-lite-ios.git', :tag => '2.0DB023', :submodules => true + pod 'CouchbaseLiteSwift', '~> 2.0.0' end ``` @@ -38,7 +38,7 @@ end You can use [Carthage](https://github.com/Carthage/Carthage) to install `CouchbaseLite` by adding it in your [Cartfile](https://github.com/Carthage/Carthage/blob/master/Documentation/Artifacts.md#cartfile): ``` -github "couchbase/couchbase-lite-ios" "2.0DB023" +github "couchbase/couchbase-lite-ios" "2.0.0" ``` > When running `carthage update or build`, Carthage will build both CouchbaseLite and CouchbaseLiteSwift framework. @@ -53,7 +53,7 @@ $ git submodule update --init --recursive $ cd couchbase-lite-ios ``` -2. Run ./Scripts/build_framework.sh to build a platform framework which could be either an Objective-C or a Swift framework. The supported platforms include iOS, tvOS, and macOS. +2. Run ./Scripts/build_framework.sh to build a platform framework which could be either an Objective-C or a Swift framework. The supported platforms include iOS and macOS. ``` $ ./Scripts/build_framework.sh -s "CBL ObjC" -p iOS -o output // For building the ObjC framework for iOS