From 048ff16656f7928fc4aac8967fea6b45dee526c2 Mon Sep 17 00:00:00 2001 From: Neil Mayhew Date: Fri, 17 Jan 2025 17:29:26 -0700 Subject: [PATCH] Reorder the list of directories in RELEASING.md This not only makes the list easier to read and understand, it also enables it to be used conveniently as the list of subdirs for an srp --- RELEASING.md | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/RELEASING.md b/RELEASING.md index 7ca9f2a2226..91f3722f552 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -183,28 +183,30 @@ from a sepecific `` that had a version bump when compared to CHaP: $ ./scripts/add-from-github.sh https://github.com/IntersectMBO/cardano-ledger \ eras/allegra/impl \ eras/alonzo/impl \ - eras/alonzo/test-suite eras/babbage/impl \ - eras/babbage/test-suite eras/conway/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-ma/test-suite \ eras/shelley/impl \ eras/shelley/test-suite \ - eras/shelley-ma/test-suite \ + libs/cardano-data \ libs/cardano-ledger-api \ - libs/cardano-ledger-core \ libs/cardano-ledger-binary \ + libs/cardano-ledger-core \ libs/cardano-protocol-tpraos \ libs/non-integral \ - libs/small-steps \ - libs/cardano-data \ libs/set-algebra \ - libs/vector-map \ - eras/byron/chain/executable-spec \ - eras/byron/ledger/executable-spec \ - eras/byron/ledger/impl \ - eras/byron/ledger/impl/test \ - eras/byron/crypto \ - eras/byron/crypto/test + libs/small-steps \ + libs/vector-map ``` More on that command in the section below.