diff --git a/.github/workflows/publish-docker-image-every-push.yml b/.github/workflows/publish-docker-image-every-push.yml index 05d478b586..4fdf382f63 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: '25.2.1' ELIXIR_VERSION: '1.14.3' - RELEASE_VERSION: 5.1.1 + RELEASE_VERSION: 5.1.2 jobs: push_to_registry: diff --git a/.github/workflows/publish-docker-image-release.yml b/.github/workflows/publish-docker-image-release.yml index 305804f2d6..30ad1eda11 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: 5.1.1 + RELEASE_VERSION: 5.1.2 steps: - name: Check out the repo uses: actions/checkout@v3 diff --git a/CHANGELOG.md b/CHANGELOG.md index ea23639777..f9639810f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,15 @@ ### Features -- [#6925](https://github.com/blockscout/blockscout/pull/6925) - Rework token price fetching mechanism and sort token balances by fiat value +### Fixes + +### Chore + +## 5.1.2-beta + +### Features + +- [#6925](https://github.com/blockscout/blockscout/pull/6925) - Rework token price fetching mechanism and sort token balances by fiat value - [#7068](https://github.com/blockscout/blockscout/pull/7068) - Add authenticate endpoint - [#6990](https://github.com/blockscout/blockscout/pull/6990) - Improved http requests logging, batch transfers pagination; New API v2 endpoint `/smart-contracts/counters`; And some refactoring - [#7089](https://github.com/blockscout/blockscout/pull/7089) - ETHEREUM_JSONRPC_HTTP_TIMEOUT env variable diff --git a/apps/block_scout_web/mix.exs b/apps/block_scout_web/mix.exs index c6910d00e7..aec1240331 100644 --- a/apps/block_scout_web/mix.exs +++ b/apps/block_scout_web/mix.exs @@ -23,7 +23,7 @@ defmodule BlockScoutWeb.Mixfile do dialyzer: :test ], start_permanent: Mix.env() == :prod, - version: "5.1.1" + version: "5.1.2" ] end diff --git a/apps/ethereum_jsonrpc/mix.exs b/apps/ethereum_jsonrpc/mix.exs index f4aeb1dece..e1a482b53f 100644 --- a/apps/ethereum_jsonrpc/mix.exs +++ b/apps/ethereum_jsonrpc/mix.exs @@ -23,7 +23,7 @@ defmodule EthereumJsonrpc.MixProject do dialyzer: :test ], start_permanent: Mix.env() == :prod, - version: "5.1.1" + version: "5.1.2" ] end diff --git a/apps/explorer/mix.exs b/apps/explorer/mix.exs index 0f0b0228c0..6fad2832b9 100644 --- a/apps/explorer/mix.exs +++ b/apps/explorer/mix.exs @@ -24,7 +24,7 @@ defmodule Explorer.Mixfile do dialyzer: :test ], start_permanent: Mix.env() == :prod, - version: "5.1.1", + version: "5.1.2", xref: [exclude: [BlockScoutWeb.WebRouter.Helpers]] ] end diff --git a/apps/indexer/mix.exs b/apps/indexer/mix.exs index 47a522c4fa..221204d14d 100644 --- a/apps/indexer/mix.exs +++ b/apps/indexer/mix.exs @@ -14,7 +14,7 @@ defmodule Indexer.MixProject do elixirc_paths: elixirc_paths(Mix.env()), lockfile: "../../mix.lock", start_permanent: Mix.env() == :prod, - version: "5.1.1" + version: "5.1.2" ] end diff --git a/deploy/testing/eth-goerli/values.yaml b/deploy/testing/eth-goerli/values.yaml index 957b11fe1d..56bbd91802 100644 --- a/deploy/testing/eth-goerli/values.yaml +++ b/deploy/testing/eth-goerli/values.yaml @@ -38,7 +38,7 @@ blockscout: environment: BLOCKSCOUT_VERSION: - _default: v5.1.1-beta + _default: v5.1.2-beta ETHEREUM_JSONRPC_VARIANT: _default: geth HEART_BEAT_TIMEOUT: @@ -203,7 +203,7 @@ frontend: NEXT_PUBLIC_API_BASE_PATH: _default: / NEXT_PUBLIC_BLOCKSCOUT_VERSION: - _default: v5.1.1-beta + _default: v5.1.2-beta NEXT_PUBLIC_FOOTER_GITHUB_LINK: _default: https://github.com/blockscout/blockscout NEXT_PUBLIC_FOOTER_TWITTER_LINK: diff --git a/mix.exs b/mix.exs index 5b20919818..57fb7602fb 100644 --- a/mix.exs +++ b/mix.exs @@ -7,7 +7,7 @@ defmodule BlockScout.Mixfile do [ # app: :block_scout, # aliases: aliases(config_env()), - version: "5.1.1", + version: "5.1.2", apps_path: "apps", deps: deps(), dialyzer: dialyzer(), diff --git a/rel/config.exs b/rel/config.exs index ac05bd1ded..bdaeed6082 100644 --- a/rel/config.exs +++ b/rel/config.exs @@ -71,7 +71,7 @@ end # will be used by default release :blockscout do - set version: "5.1.1-beta" + set version: "5.1.2-beta" set applications: [ :runtime_tools, block_scout_web: :permanent,