From e284d2fba43ebf30a03ba9726f27d48e077b4569 Mon Sep 17 00:00:00 2001 From: Yann Simon Date: Tue, 28 Apr 2020 14:04:20 +0200 Subject: [PATCH 1/7] back to sangria-graphql --- README.md | 4 ++-- build.sbt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index cdd0a19..a42378a 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ **sangria-relay** is a library to help construct a sangria server supporting react-relay. [Sangria](http://sangria-graphql.org/) is a scala [GraphQL](http://facebook.github.io/graphql/) library. -[![Build Status](https://travis-ci.org/sangria-graphql-org/sangria-relay.svg?branch=master)](https://travis-ci.org/sangria-graphql-org/sangria-relay) -[![Coverage Status](http://coveralls.io/repos/sangria-graphql-org/sangria-relay/badge.svg?branch=master&service=github)](http://coveralls.io/github/sangria-graphql-org/sangria-relay?branch=master) +[![Build Status](https://travis-ci.org/sangria-graphql/sangria-relay.svg?branch=master)](https://travis-ci.org/sangria-graphql/sangria-relay) +[![Coverage Status](http://coveralls.io/repos/sangria-graphql/sangria-relay/badge.svg?branch=master&service=github)](http://coveralls.io/github/sangria-graphql/sangria-relay?branch=master) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.sangria-graphql/sangria-relay_2.11/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.sangria-graphql/sangria-relay_2.11) [![License](http://img.shields.io/:license-Apache%202-brightgreen.svg)](http://www.apache.org/licenses/LICENSE-2.0.txt) [![Join the chat at https://gitter.im/sangria-graphql/sangria](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/sangria-graphql/sangria?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) diff --git a/build.sbt b/build.sbt index 48427eb..9c23973 100644 --- a/build.sbt +++ b/build.sbt @@ -41,8 +41,8 @@ startYear := Some(2015) organizationHomepage := Some(url("https://github.com/sangria-graphql")) developers := Developer("OlegIlyenko", "Oleg Ilyenko", "", url("https://github.com/OlegIlyenko")) :: Nil scmInfo := Some(ScmInfo( - browseUrl = url("https://github.com/sangria-graphql-org/sangria-relay.git"), - connection = "scm:git:git@github.com:sangria-graphql-org/sangria-relay.git" + browseUrl = url("https://github.com/sangria-graphql/sangria-relay.git"), + connection = "scm:git:git@github.com:sangria-graphql/sangria-relay.git" )) // nice *magenta* prompt! From a8b3c0c99bd0aa6b4879139d33b822eabb5d8359 Mon Sep 17 00:00:00 2001 From: Yann Simon Date: Tue, 28 Apr 2020 14:48:35 +0200 Subject: [PATCH 2/7] automate release notes --- .github/workflows/release-drafter.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/release-drafter.yml diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml new file mode 100644 index 0000000..b1c0cbd --- /dev/null +++ b/.github/workflows/release-drafter.yml @@ -0,0 +1,19 @@ +name: Release Drafter + +on: + push: + # branches to consider in the event; optional, defaults to all + branches: + - master + +jobs: + update_release_draft: + runs-on: ubuntu-latest + steps: + # Drafts your next Release notes as Pull Requests are merged into "master" + - uses: release-drafter/release-drafter@v5 + with: + # (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml + # config-name: my-config.yml + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From f4c467a25f5fb1062a993bc3b95c30f08dfecc7a Mon Sep 17 00:00:00 2001 From: Yann Simon Date: Tue, 28 Apr 2020 15:14:16 +0200 Subject: [PATCH 3/7] automate release notes --- .github/workflows/release-drafter.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml index b1c0cbd..2c30bcd 100644 --- a/.github/workflows/release-drafter.yml +++ b/.github/workflows/release-drafter.yml @@ -12,8 +12,5 @@ jobs: steps: # Drafts your next Release notes as Pull Requests are merged into "master" - uses: release-drafter/release-drafter@v5 - with: - # (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml - # config-name: my-config.yml env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 1112096bde98debe482b46bf6ccd5e9a34450412 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 7 Jun 2020 16:33:44 +0200 Subject: [PATCH 4/7] Update sangria to 2.0.0 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 48427eb..26984f6 100644 --- a/build.sbt +++ b/build.sbt @@ -19,7 +19,7 @@ scalacOptions ++= { } libraryDependencies ++= Seq( - "org.sangria-graphql" %% "sangria" % "2.0.0-RC1", + "org.sangria-graphql" %% "sangria" % "2.0.0", "org.scalatest" %% "scalatest" % "3.1.1" % Test) // Publishing From e30cf9c065ac400ea58ac3e64b23904ce4691050 Mon Sep 17 00:00:00 2001 From: Yann Simon Date: Fri, 14 Aug 2020 12:52:25 +0200 Subject: [PATCH 5/7] force using java8 --- .java-version | 1 + 1 file changed, 1 insertion(+) create mode 100644 .java-version diff --git a/.java-version b/.java-version new file mode 100644 index 0000000..6259340 --- /dev/null +++ b/.java-version @@ -0,0 +1 @@ +1.8 From 3edacd74b2fb67b0348321874eab8d36121f7657 Mon Sep 17 00:00:00 2001 From: Yann Simon Date: Fri, 14 Aug 2020 12:54:35 +0200 Subject: [PATCH 6/7] Setting version to 2.0.0 --- version.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.sbt b/version.sbt index c92517f..7bf9544 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -version in ThisBuild := "2.0.0-SNAPSHOT" +version in ThisBuild := "2.0.0" From 83030c371beb8c195bf79aeda3deb6ace7900f33 Mon Sep 17 00:00:00 2001 From: Yann Simon Date: Fri, 14 Aug 2020 12:55:45 +0200 Subject: [PATCH 7/7] Setting version to 2.0.1-SNAPSHOT --- version.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.sbt b/version.sbt index 7bf9544..c670469 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -version in ThisBuild := "2.0.0" +version in ThisBuild := "2.0.1-SNAPSHOT"