Skip to content

Commit 295bf6f

Browse files
Alexey SharpAlexey Sharp
authored andcommitted
Alpha modifications
1 parent 79830ad commit 295bf6f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ DOCKER_PID ?= 1000
99
DOCKER_TAG ?= thorax/erigon:latest
1010

1111
CGO_CFLAGS := $(shell $(GO) env CGO_CFLAGS) # don't loose default
12-
CGO_CFLAGS += -DMDBX_FORCE_ASSERTIONS=1 # Enable MDBX's asserts by default in 'devel' branch and disable in 'stable'
12+
CGO_CFLAGS += -DMDBX_FORCE_ASSERTIONS=0 # Enable MDBX's asserts by default in 'devel' branch and disable in 'stable'
1313
CGO_CFLAGS := CGO_CFLAGS="$(CGO_CFLAGS)"
1414
DBG_CGO_CFLAGS += -DMDBX_DEBUG=1
1515

params/version.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ var (
3131

3232
// see https://calver.org
3333
const (
34-
VersionMajor = 2022 // Major version component of the current release
35-
VersionMinor = 99 // Minor version component of the current release
36-
VersionMicro = 99 // Patch version component of the current release
37-
VersionModifier = "dev" // Modifier component of the current release
34+
VersionMajor = 2022 // Major version component of the current release
35+
VersionMinor = 6 // Minor version component of the current release
36+
VersionMicro = 5 // Patch version component of the current release
37+
VersionModifier = "alpha" // Modifier component of the current release
3838
VersionKeyCreated = "ErigonVersionCreated"
3939
VersionKeyFinished = "ErigonVersionFinished"
4040
)

0 commit comments

Comments
 (0)