Skip to content

Commit

Permalink
bump version, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
soad003 committed Jun 12, 2023
1 parent 670d8df commit ae385bd
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [23.06/1.5.0] - 2023-06-12
### Changed
- Bumped Erigon version to 2.45.1
- Reenable internalcl (--internalcl erigon flag)

## [23.03/1.4.0] - 2023-03-29
### Changed
- Bumped Erigon version to 2.42.0
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
RELEASE := 'v23.03'
RELEASESEM := 'v1.4.0'
RELEASE := 'v23.06'
RELEASESEM := 'v1.5.0'

all: build

Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ version: '2.2'

# Basic erigon's service
x-erigon-service: &default-erigon-service
image: thorax/erigon:${TAG:-latest}
image: thorax/erigon:${TAG:-2.45.1}
pid: service:erigon # Use erigon's PID namespace. It's required to open Erigon's DB from another process (RPCDaemon local-mode)
volumes_from: [ erigon ]
restart: unless-stopped
Expand All @@ -24,10 +24,10 @@ x-erigon-service: &default-erigon-service

services:
erigon:
image: thorax/erigon:${TAG:-latest}
image: thorax/erigon:${TAG:-2.45.1}
user: ${DOCKER_UID:-1000}:${DOCKER_GID:-1000}
command: |
${ERIGON_FLAGS-} --private.api.addr=0.0.0.0:9090
${ERIGON_FLAGS-} --internalcl --private.api.addr=0.0.0.0:9090
--sentry.api.addr=sentry:9091 --downloader.api.addr=downloader:9093 --txpool.disable
--metrics --metrics.addr=0.0.0.0 --metrics.port=6060 --pprof --pprof.addr=0.0.0.0 --pprof.port=6061
--authrpc.jwtsecret=/home/erigon/.local/share/erigon/jwt.hex --datadir=/home/erigon/.local/share/erigon
Expand Down
2 changes: 1 addition & 1 deletion env.template
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
XDG_DATA_HOME=
TAG=v2.42.0
TAG=v2.45.1
DOCKER_UID=10000
DOCKER_GID=1000
ERIGON_FLAGS=--http.api=eth,erigon,engine,debug,trace
Expand Down

0 comments on commit ae385bd

Please sign in to comment.