diff --git a/cardano-db-sync-extended/CHANGELOG.md b/cardano-db-sync-extended/CHANGELOG.md index 672758d68..1b2a2fe75 100644 --- a/cardano-db-sync-extended/CHANGELOG.md +++ b/cardano-db-sync-extended/CHANGELOG.md @@ -1,5 +1,12 @@ # Revision history for cardano-db-sync-extended +## 2.1.0 -- July 2020 + +* Note that this release requires the database to be dropped and recreated +* Schema changes, see cardano-db 2.1.0 CHANGELOG.md +* Shelley is still not fully supported +* Fix updating of Epoch table + ## 2.0.0 -- May 2020 * Note that this release requires the database to be dropped and recreated diff --git a/cardano-db-sync-extended/cardano-db-sync-extended.cabal b/cardano-db-sync-extended/cardano-db-sync-extended.cabal index 33b2c53b4..58f4996a8 100644 --- a/cardano-db-sync-extended/cardano-db-sync-extended.cabal +++ b/cardano-db-sync-extended/cardano-db-sync-extended.cabal @@ -3,7 +3,7 @@ cabal-version: >= 1.10 -- http://haskell.org/cabal/users-guide/ name: cardano-db-sync-extended -version: 2.0.0 +version: 2.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 diff --git a/cardano-db-sync/CHANGELOG.md b/cardano-db-sync/CHANGELOG.md index 397b11cf3..dafa69923 100644 --- a/cardano-db-sync/CHANGELOG.md +++ b/cardano-db-sync/CHANGELOG.md @@ -1,5 +1,13 @@ # Revision history for cardano-db-sync node +## 2.1.0 -- July 2020 + +* Note that this release requires the database to be dropped and recreated +* Schema changes, see cardano-db 2.1.0 CHANGELOG.md +* Add handling of Shelley era blocks to the existing handling of Byron era blocks +* Shelley is still not fully supported +* Fix/improve the rollback handling logic + ## 2.0.0 -- May 2020 * Note that this release requires the database to be dropped and recreated diff --git a/cardano-db-sync/cardano-db-sync.cabal b/cardano-db-sync/cardano-db-sync.cabal index 3a6ec275b..f64fc3449 100644 --- a/cardano-db-sync/cardano-db-sync.cabal +++ b/cardano-db-sync/cardano-db-sync.cabal @@ -3,7 +3,7 @@ cabal-version: >= 1.10 -- http://haskell.org/cabal/users-guide/ name: cardano-db-sync -version: 2.0.0 +version: 2.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. diff --git a/cardano-db/CHANGELOG.md b/cardano-db/CHANGELOG.md index 5b476e76b..4726b171c 100644 --- a/cardano-db/CHANGELOG.md +++ b/cardano-db/CHANGELOG.md @@ -1,5 +1,13 @@ # Revision history for cardano-db +## 2.1.0 -- July 2020 + +* Note that this release requires the database to be dropped and recreated +* The database schema has been accepted to accept the superset of Byron and Shelley + era information +* Shelley is still not fully supported +* Remove last hard coded values for slots per epoch + ## 2.0.0 -- May 2020 * Note that this release requires the database to be dropped and recreated diff --git a/cardano-db/cardano-db.cabal b/cardano-db/cardano-db.cabal index 262674582..1b528a74c 100644 --- a/cardano-db/cardano-db.cabal +++ b/cardano-db/cardano-db.cabal @@ -3,7 +3,7 @@ cabal-version: >= 1.10 -- http://haskell.org/cabal/users-guide/ name: cardano-db -version: 2.0.0 +version: 2.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.