diff --git a/db/recsplit/index.go b/db/recsplit/index.go index d2f11bc9557..f4ce24b2cb7 100644 --- a/db/recsplit/index.go +++ b/db/recsplit/index.go @@ -22,7 +22,6 @@ import ( "encoding/binary" "errors" "fmt" - "github.com/erigontech/erigon/db/version" "math" "math/bits" "os" @@ -41,6 +40,7 @@ import ( "github.com/erigontech/erigon/db/datastruct/fusefilter" "github.com/erigontech/erigon/db/recsplit/eliasfano16" "github.com/erigontech/erigon/db/recsplit/eliasfano32" + "github.com/erigontech/erigon/db/version" ) type Features byte diff --git a/db/version/app.go b/db/version/app.go index 94b29b0d2b8..5162292951b 100644 --- a/db/version/app.go +++ b/db/version/app.go @@ -31,7 +31,7 @@ var ( const ( Major = 3 // Major version component of the current release Minor = 3 // Minor version component of the current release - Micro = 0 // Patch version component of the current release + Micro = 1 // Patch version component of the current release Modifier = "" // Modifier component of the current release DefaultSnapshotGitBranch = "release/3.1" // Branch of erigontech/erigon-snapshot to use in OtterSync. Erigon Verisons 3.1, 3.2, 3.3 use `erigon-snapshot` `release/3.1` branch VersionKeyCreated = "ErigonVersionCreated"