From 6ec6568fa65361a6aa3e24e70bf6ed82e44af45e Mon Sep 17 00:00:00 2001 From: "Daniel (dB.) Doubrovkine" Date: Tue, 20 Dec 2022 10:16:47 -0500 Subject: [PATCH 1/3] Rotate Danger token. --- .github/workflows/danger.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/danger.yml b/.github/workflows/danger.yml index 040beda21b..7a04b44090 100644 --- a/.github/workflows/danger.yml +++ b/.github/workflows/danger.yml @@ -15,7 +15,6 @@ jobs: bundler-cache: true - name: Run Danger run: | - # the token is public, this is ok - TOKEN='b8b19daa0ade737762c' - TOKEN+='f35edcb328642d371ce86' + # the token is public, has public_repo scope and belongs to the grape-bot user owned by @dblock, this is ok + TOKEN=$(echo -n Z2hwX2lYb0dPNXNyejYzOFJyaTV3QUxUdkNiS1dtblFwZTFuRXpmMwo= | base64 --decode) DANGER_GITHUB_API_TOKEN=$TOKEN bundle exec danger --verbose From 0922736852ce3e319fc61b505c5421e4959266b0 Mon Sep 17 00:00:00 2001 From: "Daniel (dB.) Doubrovkine" Date: Tue, 20 Dec 2022 10:23:42 -0500 Subject: [PATCH 2/3] Preparing for release, 1.7.0. --- CHANGELOG.md | 4 +--- README.md | 3 +-- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 670f15d3a4..c53ffe1a22 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -### 1.7.0 (Next) +### 1.7.0 (2022/12/20) #### Features @@ -13,7 +13,6 @@ * [#2274](https://github.com/ruby-grape/grape/pull/2274): Error middleware support using rack util's symbols as status - [@dhruvCW](https://github.com/dhruvCW). * [#2276](https://github.com/ruby-grape/grape/pull/2276): Fix exception super - [@ericproulx](https://github.com/ericproulx). * [#2285](https://github.com/ruby-grape/grape/pull/2285), [#2287](https://github.com/ruby-grape/grape/pull/2287): Added :evaluate_given to declared(params) - [@zysend](https://github.com/zysend). -* Your contribution here. #### Fixes @@ -28,7 +27,6 @@ * [#2256](https://github.com/ruby-grape/grape/pull/2256): Raise `Grape::Exceptions::MultipartPartLimitError` from Rack when too many files are uploaded - [@bschmeck](https://github.com/bschmeck). * [#2266](https://github.com/ruby-grape/grape/pull/2266): Fix code coverage - [@duffn](https://github.com/duffn). * [#2284](https://github.com/ruby-grape/grape/pull/2284): Fix an unexpected backtick - [@zysend](https://github.com/zysend). -* Your contribution here. ### 1.6.2 (2021/12/30) diff --git a/README.md b/README.md index 031ee40847..d3e853d8d5 100644 --- a/README.md +++ b/README.md @@ -159,9 +159,8 @@ content negotiation, versioning and much more. ## Stable Release -You're reading the documentation for the next release of Grape, which should be **1.7.0**. +You're reading the documentation for the stable release of Grape, 1.7.0. Please read [UPGRADING](UPGRADING.md) when upgrading from a previous version. -The current stable release is [1.6.2](https://github.com/ruby-grape/grape/blob/v1.6.2/README.md). ## Project Resources From 095c6e814696b4225d3f63835102f622d94fa371 Mon Sep 17 00:00:00 2001 From: "Daniel (dB.) Doubrovkine" Date: Tue, 20 Dec 2022 10:25:25 -0500 Subject: [PATCH 3/3] Preparing for next development iteration, 1.7.1. --- CHANGELOG.md | 10 ++++++++++ README.md | 3 ++- lib/grape/version.rb | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c53ffe1a22..271ce7e334 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +### 1.7.1 (Next) + +#### Features + +* Your contribution here. + +#### Fixes + +* Your contribution here. + ### 1.7.0 (2022/12/20) #### Features diff --git a/README.md b/README.md index d3e853d8d5..1850984662 100644 --- a/README.md +++ b/README.md @@ -159,8 +159,9 @@ content negotiation, versioning and much more. ## Stable Release -You're reading the documentation for the stable release of Grape, 1.7.0. +You're reading the documentation for the next release of Grape, which should be **1.7.1**. Please read [UPGRADING](UPGRADING.md) when upgrading from a previous version. +The current stable release is [1.7.0](https://github.com/ruby-grape/grape/blob/v1.7.0/README.md). ## Project Resources diff --git a/lib/grape/version.rb b/lib/grape/version.rb index 3a0817e8db..54cc420806 100644 --- a/lib/grape/version.rb +++ b/lib/grape/version.rb @@ -2,5 +2,5 @@ module Grape # The current version of Grape. - VERSION = '1.7.0' + VERSION = '1.7.1' end