Skip to content

Commit

Permalink
6.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vbaranov committed Feb 29, 2024
1 parent c9f99bd commit ee82687
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 8 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@

### Fixes

### Chore

## 6.2.2

### Features

### Fixes

- [#9505](https://github.com/blockscout/blockscout/pull/9505) - Add env vars for NFT sanitize migration

### Chore
Expand Down
2 changes: 1 addition & 1 deletion apps/block_scout_web/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ defmodule BlockScoutWeb.Mixfile do
dialyzer: :test
],
start_permanent: Mix.env() == :prod,
version: "6.2.1",
version: "6.2.2",
xref: [exclude: [Explorer.Chain.PolygonZkevm.Reader, Explorer.Chain.Beacon.Reader]]
]
end
Expand Down
2 changes: 1 addition & 1 deletion apps/ethereum_jsonrpc/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ defmodule EthereumJsonrpc.MixProject do
dialyzer: :test
],
start_permanent: Mix.env() == :prod,
version: "6.2.1"
version: "6.2.2"
]
end

Expand Down
2 changes: 1 addition & 1 deletion apps/explorer/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ defmodule Explorer.Mixfile do
dialyzer: :test
],
start_permanent: Mix.env() == :prod,
version: "6.2.1",
version: "6.2.2",
xref: [exclude: [BlockScoutWeb.WebRouter.Helpers, Indexer.Helper]]
]
end
Expand Down
2 changes: 1 addition & 1 deletion apps/indexer/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ defmodule Indexer.MixProject do
elixirc_paths: elixirc_paths(Mix.env()),
lockfile: "../../mix.lock",
start_permanent: Mix.env() == :prod,
version: "6.2.1"
version: "6.2.2"
]
end

Expand Down
2 changes: 1 addition & 1 deletion docker-compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ services:
CACHE_TOTAL_GAS_USAGE_COUNTER_ENABLED: ""
CACHE_ADDRESS_WITH_BALANCES_UPDATE_INTERVAL: ""
ADMIN_PANEL_ENABLED: ""
RELEASE_VERSION: 6.2.1
RELEASE_VERSION: 6.2.2
links:
- db:database
environment:
Expand Down
2 changes: 1 addition & 1 deletion docker/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ STATS_CONTAINER_NAME := stats
STATS_DB_CONTAINER_NAME := stats-db
PROXY_CONTAINER_NAME := proxy
PG_CONTAINER_NAME := postgres
RELEASE_VERSION ?= '6.2.1'
RELEASE_VERSION ?= '6.2.2'
TAG := $(RELEASE_VERSION)-commit-$(shell git log -1 --pretty=format:"%h")
STABLE_TAG := $(RELEASE_VERSION)

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ defmodule BlockScout.Mixfile do
[
# app: :block_scout,
# aliases: aliases(config_env()),
version: "6.2.1",
version: "6.2.2",
apps_path: "apps",
deps: deps(),
dialyzer: dialyzer(),
Expand Down
2 changes: 1 addition & 1 deletion rel/config.exs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ end
# will be used by default

release :blockscout do
set version: "6.2.1-beta"
set version: "6.2.2-beta"
set applications: [
:runtime_tools,
block_scout_web: :permanent,
Expand Down

0 comments on commit ee82687

Please sign in to comment.