bump statediff meta version; use db v0.3.0 in compose

This commit is contained in:
i-norden 2021-12-20 12:30:33 -06:00
parent bd1e1e40a0
commit f01dd5d1b7
2 changed files with 6 additions and 6 deletions

View File

@ -3,7 +3,7 @@ version: '3.2'
services: services:
ipld-eth-db: ipld-eth-db:
restart: always restart: always
image: vulcanize/ipld-eth-db:v0.2.0 image: vulcanize/ipld-eth-db:v0.3.1
environment: environment:
POSTGRES_USER: "vdbm" POSTGRES_USER: "vdbm"
POSTGRES_DB: "vulcanize_public" POSTGRES_DB: "vulcanize_public"
@ -14,4 +14,4 @@ services:
- "127.0.0.1:5432:5432" - "127.0.0.1:5432:5432"
volumes: volumes:
geth_node: geth_node:

View File

@ -21,10 +21,10 @@ import (
) )
const ( const (
VersionMajor = 1 // Major version component of the current release VersionMajor = 1 // Major version component of the current release
VersionMinor = 10 // Minor version component of the current release VersionMinor = 10 // Minor version component of the current release
VersionPatch = 11 // Patch version component of the current release VersionPatch = 11 // Patch version component of the current release
VersionMeta = "statediff-0.0.27" // Version metadata to append to the version string VersionMeta = "statediff-0.1.0" // Version metadata to append to the version string
) )
// Version holds the textual version string. // Version holds the textual version string.