Skip to content

Commit bc08b17

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents 22f5f2f + 968432e commit bc08b17

File tree

16 files changed

+334
-54
lines changed

16 files changed

+334
-54
lines changed

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
blank_issues_enabled: true
22
contact_links:
33
- name: Cardano CLI Issues
4-
url: https://github.com/input-output-hk/cardano-cli/issues
4+
url: https://github.com/IntersectMBO/cardano-cli/issues
55
about: Report CLI related issues here
66
- name: Cardano API Issues
7-
url: https://github.com/input-output-hk/cardano-api/issues
7+
url: https://github.com/IntersectMBO/cardano-api/issues
88
about: Report API related issues here

.github/workflows/release-ghcr.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,15 +71,15 @@ jobs:
7171
echo "::endgroup::"
7272
7373
echo "::group::Uploading to registry"
74-
skopeo copy docker-archive:./result docker://ghcr.io/input-output-hk/cardano-node:$GITHUB_REF_NAME
74+
skopeo copy docker-archive:./result docker://ghcr.io/intersectmbo/cardano-node:$GITHUB_REF_NAME
7575
echo "::endgroup::"
7676
77-
- name: Uploading input-output-hk/cardano-submit-api
77+
- name: Uploading intersectmbo/cardano-submit-api
7878
run: |
7979
echo "::group::Downloading from cache"
8080
nix build --accept-flake-config --print-out-paths --builders "" --max-jobs 0 ${{ steps.flake-metadata.outputs.LOCKED_URL }}#dockerImage/submit-api
8181
echo "::endgroup::"
8282
8383
echo "::group::Uploading to registry"
84-
skopeo copy docker-archive:./result docker://ghcr.io/input-output-hk/cardano-submit-api:$GITHUB_REF_NAME
84+
skopeo copy docker-archive:./result docker://ghcr.io/intersectmbo/cardano-submit-api:$GITHUB_REF_NAME
8585
echo "::endgroup::"

.github/workflows/release-upload.yaml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ jobs:
4646
needs: [wait-for-hydra]
4747
strategy:
4848
matrix:
49-
arch: [linux, macos, win64]
49+
# Disable windows until libblst works for windows cross compilation builds
50+
# arch: [linux, macos, win64]
51+
arch: [linux, macos]
5052
name: "Download Asset from the Cache"
5153
runs-on: ubuntu-latest
5254
steps:
@@ -95,14 +97,16 @@ jobs:
9597
- uses: actions/download-artifact@v3
9698
with:
9799
name: ${{ github.sha }}-macos
98-
- uses: actions/download-artifact@v3
99-
with:
100-
name: ${{ github.sha }}-win64
100+
# Disable windows until libblst works for windows cross compilation builds
101+
# - uses: actions/download-artifact@v3
102+
# with:
103+
# name: ${{ github.sha }}-win64
101104
- name: Release
102105
uses: input-output-hk/action-gh-release@v1
103106
with:
104107
draft: true
105108
files: |
106-
cardano-node-*-win64.zip
109+
# Disable windows until libblst works for windows cross compilation builds
110+
# cardano-node-*-win64.zip
107111
cardano-node-*-macos.tar.gz
108112
cardano-node-*-linux.tar.gz

bench/tx-generator/tx-generator.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ library
100100
, bytestring
101101
, cardano-api ^>= 8.38
102102
, cardano-binary
103-
, cardano-cli ^>= 8.20.0.0
103+
, cardano-cli ^>= 8.20.1.0
104104
, cardano-crypto-class
105105
, cardano-crypto-wrapper
106106
, cardano-data

cabal.project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ repository cardano-haskell-packages
1414
-- you need to run if you change them
1515
index-state:
1616
, hackage.haskell.org 2024-02-06T15:14:59Z
17-
, cardano-haskell-packages 2024-02-07T07:51:35Z
17+
, cardano-haskell-packages 2024-02-20T15:00:00Z
1818

1919
packages:
2020
cardano-git-rev

cardano-node/cardano-node.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 3.0
22

33
name: cardano-node
4-
version: 8.8.0
4+
version: 8.8.1
55
synopsis: The cardano full node
66
description: The cardano full node.
77
category: Cardano,

cardano-submit-api/cardano-submit-api.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ library
4141
, bytestring
4242
, cardano-api ^>= 8.38
4343
, cardano-binary
44-
, cardano-cli ^>= 8.20.0.0
44+
, cardano-cli ^>= 8.20.1.0
4545
, cardano-crypto-class ^>= 2.1.2
4646
, http-media
4747
, iohk-monitoring

cardano-testnet/cardano-testnet.cabal

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ library
3535
, ansi-terminal
3636
, bytestring
3737
, cardano-api ^>= 8.38
38-
, cardano-cli ^>= 8.20.0.0
38+
, cardano-cli ^>= 8.20.1.0
3939
, cardano-crypto-class
4040
, cardano-crypto-wrapper
4141
, cardano-ledger-alonzo
@@ -170,6 +170,7 @@ test-suite cardano-testnet-test
170170
other-modules: Cardano.Testnet.Test.Cli.Babbage.LeadershipSchedule
171171
Cardano.Testnet.Test.Cli.Babbage.StakeSnapshot
172172
Cardano.Testnet.Test.Cli.Babbage.Transaction
173+
Cardano.Testnet.Test.Cli.Conway.DRepRetirement
173174
Cardano.Testnet.Test.Cli.Conway.StakeSnapshot
174175
Cardano.Testnet.Test.Cli.KesPeriodInfo
175176
Cardano.Testnet.Test.Cli.QuerySlotNumber
@@ -199,6 +200,7 @@ test-suite cardano-testnet-test
199200
, cardano-testnet
200201
, containers
201202
, directory
203+
, exceptions
202204
, filepath
203205
, hedgehog
204206
, hedgehog-extras

cardano-testnet/src/Parsers/Cardano.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ optsTestnet envCli = CardanoTestnetOptions
2626
<*> pLegacyCardanoEra envCli
2727
<*> OA.option auto
2828
( OA.long "epoch-length"
29-
<> OA.help "Epoch length"
30-
<> OA.metavar "MILLISECONDS"
29+
<> OA.help "Epoch length, in number of slots"
30+
<> OA.metavar "SLOTS"
3131
<> OA.showDefault
3232
<> OA.value (cardanoEpochLength cardanoDefaultTestnetOptions)
3333
)

cardano-testnet/src/Testnet/Start/Types.hs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ data CardanoTestnetOptions = CardanoTestnetOptions
3737
{ -- | List of node options. Each option will result in a single node being
3838
-- created.
3939
cardanoNodes :: [TestnetNodeOptions]
40-
, cardanoNodeEra :: AnyCardanoEra
41-
, cardanoEpochLength :: Int
42-
, cardanoSlotLength :: Double
40+
, cardanoNodeEra :: AnyCardanoEra -- ^ The era to start at
41+
, cardanoEpochLength :: Int -- ^ An epoch's duration, in number of slots
42+
, cardanoSlotLength :: Double -- ^ Slot length, in seconds
4343
, cardanoTestnetMagic :: Int
4444
, cardanoActiveSlotsCoeff :: Double
4545
, cardanoMaxSupply :: Word64 -- ^ The amount of ADA you are starting your testnet with

0 commit comments

Comments
 (0)