Skip to content

Commit

Permalink
Update version in README and podspec to 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pasin committed Apr 6, 2018
1 parent 6b7a1ea commit ceb2047
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion 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 = '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.'
Expand Down
2 changes: 1 addition & 1 deletion CouchbaseLiteSwift.podspec
Original file line number Diff line number Diff line change
@@ -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.'
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -21,15 +21,15 @@ You can use [CocoaPods](https://cocoapods.org/) to install `CouchbaseLite` for O
```
target '<your target name>' 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
```

#### CouchbaseLiteSwift (Swift API)
```
target '<your target name>' 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
```

Expand All @@ -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.
Expand All @@ -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
Expand Down

0 comments on commit ceb2047

Please sign in to comment.