diff --git a/.github/workflows/publish-docker-image-every-push.yml b/.github/workflows/publish-docker-image-every-push.yml index 0552b1bcdf..e47435a1a1 100644 --- a/.github/workflows/publish-docker-image-every-push.yml +++ b/.github/workflows/publish-docker-image-every-push.yml @@ -7,7 +7,7 @@ on: env: OTP_VERSION: '24.3.4.1' ELIXIR_VERSION: '1.13.4' - RELEASE_VERSION: 4.1.7 + NEXT_RELEASE_VERSION: 4.1.8 jobs: push_to_registry: @@ -43,7 +43,7 @@ jobs: - name: Add outputs run: | - echo "::set-output name=release-version::${{ env.RELEASE_VERSION }}" + echo "::set-output name=release-version::${{ env.NEXT_RELEASE_VERSION }}" echo "::set-output name=short-sha::${{ env.SHORT_SHA }}" id: output-step @@ -53,7 +53,7 @@ jobs: context: . file: ./docker/Dockerfile push: true - tags: blockscout/blockscout:latest, blockscout/blockscout:${{ env.RELEASE_VERSION }}-prerelease-${{ env.SHORT_SHA }} + tags: blockscout/blockscout:latest, blockscout/blockscout:${{ env.NEXT_RELEASE_VERSION }}-prerelease-${{ env.SHORT_SHA }} build-args: | CACHE_EXCHANGE_RATES_PERIOD= DISABLE_READ_API=false diff --git a/.github/workflows/publish-docker-image-release.yml b/.github/workflows/publish-docker-image-release.yml index b506435728..a5c9ff8c70 100644 --- a/.github/workflows/publish-docker-image-release.yml +++ b/.github/workflows/publish-docker-image-release.yml @@ -18,7 +18,7 @@ jobs: name: Push Docker image to Docker Hub runs-on: ubuntu-latest env: - RELEASE_VERSION: 4.1.6 + RELEASE_VERSION: 4.1.7 steps: - name: Check out the repo uses: actions/checkout@v3 diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fe48a3400..1c53753833 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,20 @@ ## Current +### Features + +### Fixes + +### Chore + +## 4.1.7-beta + ### Features - [#5783](https://github.com/blockscout/blockscout/pull/5783) - Allow to setup multiple ranges of blocks to index ### Fixes -- [#5797](https://github.com/blockscout/blockscout/pull/5797) - Fix flickering token tooltip +- [#5799](https://github.com/blockscout/blockscout/pull/5799) - Fix address_tokens_usd_sum function - [#5798](https://github.com/blockscout/blockscout/pull/5798) - Copy explorer node_modules to result image +- [#5797](https://github.com/blockscout/blockscout/pull/5797) - Fix flickering token tooltip ### Chore - [#5796](https://github.com/blockscout/blockscout/pull/5796) - Add job for e2e tests on every push to master + fix job "Merge 'master' to specific branch after release" diff --git a/mix.exs b/mix.exs index 70cf772377..3f724b4b22 100644 --- a/mix.exs +++ b/mix.exs @@ -7,7 +7,7 @@ defmodule BlockScout.Mixfile do [ # app: :block_scout, # aliases: aliases(config_env()), - version: "4.1.6", + version: "4.1.7", apps_path: "apps", deps: deps(), dialyzer: dialyzer(),