diff --git a/QuizTrain.podspec b/QuizTrain.podspec
index 56ba1a9..e307dce 100644
--- a/QuizTrain.podspec
+++ b/QuizTrain.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "QuizTrain"
- spec.version = "2.0.0"
+ spec.version = "2.1.0"
spec.summary = "QuizTrain is a framework created at Venmo allowing you to interact with TestRail's API using Swift."
spec.homepage = "https://github.com/venmo/QuizTrain"
spec.license = "MIT"
diff --git a/QuizTrain/Info.plist b/QuizTrain/Info.plist
index 3eef9a8..3d809ff 100644
--- a/QuizTrain/Info.plist
+++ b/QuizTrain/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 1.2.2
+ 2.1.0
CFBundleVersion
$(CURRENT_PROJECT_VERSION)
NSPrincipalClass
diff --git a/README.md b/README.md
index 6345a6d..7ab8a36 100644
--- a/README.md
+++ b/README.md
@@ -10,12 +10,22 @@ QuizTrain is open source software released under the MIT License. See the [LICEN
## Installation
-[Carthage](https://github.com/Carthage/Carthage) is the recommended way to install QuizTrain. Add the following to your `Cartfile` or `Cartfile.private` file:
+### Carthage
- github "venmo/QuizTrain" ~> 2.0.0
+After upgrading to the latest version of [Carthage](https://github.com/Carthage/Carthage) add the following to your `Cartfile` or `Cartfile.private` file:
+
+ github "venmo/QuizTrain" ~> 2.1.0
See [Adding frameworks to an application](https://github.com/Carthage/Carthage#adding-frameworks-to-an-application) for further instructions. Once complete `import QuizTrain` in any Swift files you wish to use QuizTrain in.
+### Cocoapods
+
+In your [`Podfile`](https://guides.cocoapods.org/using/the-podfile.html) add the following line to your target and save the file:
+
+ pod 'QuizTrain', '~> 2.1.0'
+
+Run `pod install`, open your project `.xcworkspace` file, and you should now be able to `import QuizTrain` into your code.
+
## Usage
Create an `ObjectAPI` to get, add, update, delete, and close items on your TestRail instance.