Skip to content

Commit

Permalink
Bumps library version (#85)
Browse files Browse the repository at this point in the history
* Bumps library version

* Updates version.sbt

* Fixes the temporary error with statuses in master
  • Loading branch information
Fede Fernández committed Apr 17, 2017
1 parent 40ed4f3 commit a0b24c2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class GHStatusesSpec extends AsyncFlatSpec with Matchers with TestUtils {

"Statuses >> List" should "return a non empty list when a valid ref is provided" in {
val response = Github(accessToken).statuses
.listStatuses(validRepoOwner, validRepoName, validRefSingle)
.listStatuses(validRepoOwner, validRepoName, validCommitSha)
.execFuture(headerUserAgent)

testFutureIsRight[List[Status]](response, { r =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class GHStatusesSpec extends FlatSpec with Matchers with TestUtils {

"Statuses >> List" should "return a list of statuses" in {
val response = Github(accessToken).statuses
.listStatuses(validRepoOwner, validRepoName, validRefSingle)
.listStatuses(validRepoOwner, validRepoName, validCommitSha)
.exec[Id, HttpResponse[String]](headerUserAgent)

response should be('right)
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "0.14.3-SNAPSHOT"
version in ThisBuild := "0.14.3"

0 comments on commit a0b24c2

Please sign in to comment.