diff --git a/CHANGELOG.md b/CHANGELOG.md index 54fad690..47ceb34a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +--- +## [0.12.0] - 2024-06-06 + +### Changed +- Now dispatch window will perceive prover amount +- The project & prover contract history data will store in local db + --- ## [0.10.1] - 2024-04-26 diff --git a/docker-compose.yaml b/docker-compose.yaml index e91110bf..f7be71ef 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -10,7 +10,7 @@ services: - "8000:8000" sequencer: - image: ghcr.io/machinefi/sequencer:v0.11.1 + image: ghcr.io/machinefi/sequencer:v0.12.0 depends_on: - "postgres" - "coordinator" @@ -22,7 +22,7 @@ services: command: [ "-coordinatorAddress", "coordinator:9001", "-databaseDSN", "postgres://test_user:test_passwd@postgres:5432/test?sslmode=disable" ] coordinator: - image: ghcr.io/machinefi/coordinator:v0.11.1 + image: ghcr.io/machinefi/coordinator:v0.12.0 depends_on: - "postgres" - "bootnode" @@ -41,7 +41,7 @@ services: - ./test/project:/data prover: - image: ghcr.io/machinefi/prover:v0.11.1 + image: ghcr.io/machinefi/prover:v0.12.0 depends_on: - "risc0" - "halo2"