Skip to content

Commit

Permalink
Version 7.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
erikd committed Dec 9, 2020
1 parent fd17ef9 commit 3cf868e
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 5 deletions.
7 changes: 7 additions & 0 deletions cardano-db-sync-extended/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Revision history for cardano-db-sync-extended

## 7.1.0
* Upgrading from 7.0.x will not require the database to be dropped and recreated but upgrading from
6.0.x and earlier will require it.
* Update dependencies.
* Support for the Mary era (ie multi-asset support).
* Fix issues with transactions invalidBefore/invalidHereafter fields.

## 7.0.0
* Note that this release requires the database to be dropped and recreated.
* Update dependencies.
Expand Down
2 changes: 1 addition & 1 deletion cardano-db-sync-extended/cardano-db-sync-extended.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cabal-version: >= 1.10
-- http://haskell.org/cabal/users-guide/

name: cardano-db-sync-extended
version: 7.0.0
version: 7.1.0
synopsis: The Extended Cardano DB Sync node
description: A Cardano node that follows the Cardano chain and inserts data from the
chain into a PostgresQL database. It is "extended" because it maintains an
Expand Down
7 changes: 7 additions & 0 deletions cardano-db-sync/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Revision history for cardano-db-sync node

## 7.1.0
* Upgrading from 7.0.x will not require the database to be dropped and recreated but upgrading from
6.0.x and earlier will require it.
* Update dependencies.
* Support for the Mary era (ie multi-asset support).
* Fix issues with transactions invalidBefore/invalidHereafter fields.

## 7.0.0
* Note that this release requires the database to be dropped and recreated.
* Update dependencies.
Expand Down
2 changes: 1 addition & 1 deletion cardano-db-sync/cardano-db-sync.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cabal-version: >= 1.10
-- http://haskell.org/cabal/users-guide/

name: cardano-db-sync
version: 7.0.0
version: 7.1.0
synopsis: The Cardano DB Sync node
description: A Cardano node that follows the Cardano chain and inserts data from the
chain into a PostgresQL database.
Expand Down
7 changes: 7 additions & 0 deletions cardano-db/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Revision history for cardano-db

## 7.1.0
* Upgrading from 7.0.x will not require the database to be dropped and recreated but upgrading from
6.0.x and earlier will require it.
* Update dependencies.
* Support for the Mary era (ie multi-asset support).
* Fix issues with transactions invalidBefore/invalidHereafter fields.

## 7.0.0
* Note that this release requires the database to be dropped and recreated.
* Update dependencies.
Expand Down
2 changes: 1 addition & 1 deletion cardano-db/cardano-db.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cabal-version: >= 1.10
-- http://haskell.org/cabal/users-guide/

name: cardano-db
version: 7.0.0
version: 7.1.0
synopsis: A base PostgreSQL component for the cardano-db-sync node.
description: Code for the Cardano DB Sync node that is shared between the
cardano-db-node and other components.
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ services:
max-file: "10"

cardano-node:
image: inputoutput/cardano-node:1.23.0
image: inputoutput/cardano-node:1.24.2
environment:
- NETWORK=${NETWORK:-mainnet}
volumes:
Expand All @@ -38,7 +38,7 @@ services:
max-file: "10"

cardano-db-sync:
image: inputoutput/cardano-db-sync:7.0.0
image: inputoutput/cardano-db-sync:7.1.0
environment:
- NETWORK=${NETWORK:-mainnet}
- POSTGRES_HOST=postgres
Expand Down

0 comments on commit 3cf868e

Please sign in to comment.