From aa73a614f37cc0bcf0745b13be0fa68c84837ff9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fede=20Fern=C3=A1ndez?= Date: Mon, 17 Apr 2017 15:12:33 +0200 Subject: [PATCH 1/3] Bumps library version Upgrades project version for a new release Thanks @BenFradet for the Status API --- version.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.sbt b/version.sbt index 2b274ea6d..7dc21c3f6 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -version in ThisBuild := "0.14.3-SNAPSHOT" \ No newline at end of file +version in ThisBuild := "0.14.4" From 6d1c62be40db19a834f99bdd4582409cb727ff82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fede=20Fern=C3=A1ndez?= Date: Mon, 17 Apr 2017 15:14:18 +0200 Subject: [PATCH 2/3] Update version.sbt --- version.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.sbt b/version.sbt index 7dc21c3f6..660ef63fb 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -version in ThisBuild := "0.14.4" +version in ThisBuild := "0.14.3" From d696bf52fca4532f2ac1e5a52c8307e23a030559 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fede=20Fern=C3=A1ndez?= Date: Mon, 17 Apr 2017 15:41:00 +0200 Subject: [PATCH 3/3] Fixes the temporary error with statuses in master --- .../test/scala/github4s/utils/integration/GHStatusesSpec.scala | 2 +- .../src/test/scala/github4s/integration/GHStatusesSpec.scala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/github4s/js/src/test/scala/github4s/utils/integration/GHStatusesSpec.scala b/github4s/js/src/test/scala/github4s/utils/integration/GHStatusesSpec.scala index 82ec65a15..477c9c3e7 100644 --- a/github4s/js/src/test/scala/github4s/utils/integration/GHStatusesSpec.scala +++ b/github4s/js/src/test/scala/github4s/utils/integration/GHStatusesSpec.scala @@ -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 => diff --git a/github4s/jvm/src/test/scala/github4s/integration/GHStatusesSpec.scala b/github4s/jvm/src/test/scala/github4s/integration/GHStatusesSpec.scala index 2929a169c..196013a9b 100644 --- a/github4s/jvm/src/test/scala/github4s/integration/GHStatusesSpec.scala +++ b/github4s/jvm/src/test/scala/github4s/integration/GHStatusesSpec.scala @@ -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)