Skip to content

Commit

Permalink
Update ledger, consensus and api versions for 8.6 (SRP)
Browse files Browse the repository at this point in the history
  • Loading branch information
teodanciu committed Oct 19, 2023
1 parent 9e8cbcb commit dc1c8db
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 6 deletions.
54 changes: 54 additions & 0 deletions cabal.project
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,57 @@ write-ghc-environment-files: always
-- IMPORTANT
-- Do NOT add more source-repository-package stanzas here unless they are strictly
-- temporary! Please read the section in CONTRIBUTING about updating dependencies.

source-repository-package
type: git
location: https://github.com/input-output-hk/cardano-api
tag: 289d57e5a0737a94b54e8554de0efdf08e999dbb
--sha256: 1g5w4nqa9y0jarrmf363xmzafpclvzwdaxji39m731pm0854bq03
subdir:
cardano-api
cardano-api-gen

source-repository-package
type: git
location: https://github.com/input-output-hk/ouroboros-consensus
tag: ff2b51cff418e1c05303da2ba25141195e8c2903
--sha256: 06h95ggjn9qmhxgrk516d8ysbji3359xvg0ji6wqwqrm204q355l
subdir:
ouroboros-consensus
ouroboros-consensus-cardano
ouroboros-consensus-diffusion
ouroboros-consensus-protocol
strict-sop-core

source-repository-package
type: git
location: https://github.com/input-output-hk/cardano-ledger
tag: bddca3a1892df61c3276b669060032e7f0ddb16b
--sha256: 1sp504sjbkkpnlv5f03d5mpadsp83rvqblhpzalsdcy2lxa1jy17
subdir:
eras/allegra/impl
eras/alonzo/impl
eras/alonzo/test-suite
eras/babbage/impl
eras/babbage/test-suite
eras/byron/chain/executable-spec
eras/byron/crypto
eras/byron/crypto/test
eras/byron/ledger/executable-spec
eras/byron/ledger/impl
eras/byron/ledger/impl/test
eras/conway/impl
eras/conway/test-suite
eras/mary/impl
eras/shelley/impl
eras/shelley/test-suite
eras/shelley-ma/test-suite
libs/cardano-data
libs/cardano-ledger-api
libs/cardano-ledger-binary
libs/cardano-ledger-core
libs/cardano-ledger-pretty
libs/cardano-protocol-tpraos
libs/small-steps
libs/small-steps-test
libs/vector-map
12 changes: 6 additions & 6 deletions cardano-cli/cardano-cli.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -208,14 +208,14 @@ library
, cardano-crypto
, cardano-crypto-class ^>= 2.1.2
, cardano-crypto-wrapper ^>= 1.5.1
, cardano-data >= 1.0
, cardano-data >= 1.1
, cardano-git-rev
, cardano-ledger-alonzo >= 1.3.1.1
, cardano-ledger-binary >= 1.0
, cardano-ledger-alonzo >= 1.5.0.0
, cardano-ledger-binary >= 1.2
, cardano-ledger-byron >= 1.0.0.2
, cardano-ledger-conway >= 1.5
, cardano-ledger-core >= 1.2
, cardano-ledger-shelley >=1.4.1.0
, cardano-ledger-conway >= 1.10
, cardano-ledger-core >= 1.8
, cardano-ledger-shelley >=1.7.0.0
, cardano-ping ^>= 0.2.0.5
, cardano-prelude
, cardano-slotting ^>= 0.1
Expand Down
10 changes: 10 additions & 0 deletions s
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/run/current-system/sw/bin/bash
for x in $(git ls-tree --full-tree --name-only -r HEAD cardano-cli); do
if [ "${x##*.}" == "hs" ]; then
if grep -qE '^#' $x; then
echo "$x contains CPP. Skipping."
else
stylish-haskell -i $x
fi
fi
done

0 comments on commit dc1c8db

Please sign in to comment.