From 0a66dbaeab6fd16fc66e7e45d7ecf58b7a70a58e Mon Sep 17 00:00:00 2001 From: Dave Gallagher Date: Tue, 2 Jul 2019 13:31:23 -0700 Subject: [PATCH 1/3] Updated Info.plist version to 2.1.0. --- QuizTrain/Info.plist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 778d4ea13cd834dc0f94529350081d55d5724e66 Mon Sep 17 00:00:00 2001 From: Dave Gallagher Date: Tue, 2 Jul 2019 13:31:40 -0700 Subject: [PATCH 2/3] Updated README with Cocoapods installation instructions. --- README.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) 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. From 2e51ba44f9e2d90382d37b6f2f0e4823e2d621c6 Mon Sep 17 00:00:00 2001 From: Dave Gallagher Date: Tue, 2 Jul 2019 13:36:28 -0700 Subject: [PATCH 3/3] Updated QuizTrain.podspec spec.version to 2.1.0. --- QuizTrain.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"