Skip to content

Commit

Permalink
Merge pull request #15 from venmo/bumpVersion
Browse files Browse the repository at this point in the history
Bump version from 2.0.0 to 2.1.0.
  • Loading branch information
dgallagher-venmo committed Jul 2, 2019
2 parents a1d6f40 + 2e51ba4 commit 78a98ce
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion 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"
Expand Down
2 changes: 1 addition & 1 deletion QuizTrain/Info.plist
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.2.2</string>
<string>2.1.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
14 changes: 12 additions & 2 deletions README.md
Expand Up @@ -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.
Expand Down

0 comments on commit 78a98ce

Please sign in to comment.