Skip to content

Commit c99e216

Browse files
committed
Update index state to 2022-05-09T00:00:00Z
1 parent 91a11ba commit c99e216

File tree

18 files changed

+37
-4
lines changed

18 files changed

+37
-4
lines changed

Diff for: cabal.project

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-- run `nix flake lock --update-input hackageNix` after updating index-state.
2-
index-state: 2022-02-18T00:00:00Z
2+
index-state: 2022-05-09T00:00:00Z
33

44
packages:
55
cardano-api

Diff for: cardano-api/test/Test/Cardano/Api/Json.hs

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
{-# LANGUAGE LambdaCase #-}
44
{-# LANGUAGE TemplateHaskell #-}
55

6+
{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations
7+
68
module Test.Cardano.Api.Json
79
( tests
810
) where

Diff for: cardano-api/test/Test/Cardano/Api/KeysByron.hs

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{-# LANGUAGE FlexibleContexts #-}
22
{-# LANGUAGE TemplateHaskell #-}
33

4+
{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations
5+
46
module Test.Cardano.Api.KeysByron
57
( tests
68
) where

Diff for: cardano-api/test/Test/Cardano/Api/Ledger.hs

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
{-# LANGUAGE TemplateHaskell #-}
33
{-# LANGUAGE TypeApplications #-}
44

5+
{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations
6+
57
module Test.Cardano.Api.Ledger
68
( tests
79
) where

Diff for: cardano-api/test/Test/Cardano/Api/Metadata.hs

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{-# LANGUAGE OverloadedStrings #-}
22
{-# LANGUAGE TemplateHaskell #-}
3+
4+
{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations
5+
36
module Test.Cardano.Api.Metadata
47
( tests
58
, genTxMetadata

Diff for: cardano-api/test/Test/Cardano/Api/Typed/Address.hs

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{-# LANGUAGE FlexibleContexts #-}
22
{-# LANGUAGE TemplateHaskell #-}
33

4+
{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations
5+
46
module Test.Cardano.Api.Typed.Address
57
( tests
68
) where

Diff for: cardano-api/test/Test/Cardano/Api/Typed/Bech32.hs

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
{-# LANGUAGE TemplateHaskell #-}
2+
3+
{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations
4+
25
module Test.Cardano.Api.Typed.Bech32
36
( tests
47
) where

Diff for: cardano-api/test/Test/Cardano/Api/Typed/CBOR.hs

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
{-# LANGUAGE RankNTypes #-}
55
{-# LANGUAGE TemplateHaskell #-}
66

7+
{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations
8+
79
module Test.Cardano.Api.Typed.CBOR
810
( tests
911
) where

Diff for: cardano-api/test/Test/Cardano/Api/Typed/Envelope.hs

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
{-# LANGUAGE StandaloneDeriving #-}
33
{-# LANGUAGE TemplateHaskell #-}
44

5+
{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations
6+
57
module Test.Cardano.Api.Typed.Envelope
68
( tests
79
) where

Diff for: cardano-api/test/Test/Cardano/Api/Typed/JSON.hs

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
{-# LANGUAGE TypeApplications #-}
77
{-# LANGUAGE TypeFamilies #-}
88

9+
{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations
910
{-# OPTIONS_GHC -Wno-orphans #-}
1011

1112
module Test.Cardano.Api.Typed.JSON

Diff for: cardano-api/test/Test/Cardano/Api/Typed/Ord.hs

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
{-# LANGUAGE TemplateHaskell #-}
22

3+
{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations
4+
35
module Test.Cardano.Api.Typed.Ord
46
( tests
57
) where

Diff for: cardano-api/test/Test/Cardano/Api/Typed/RawBytes.hs

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{-# LANGUAGE FlexibleContexts #-}
22
{-# LANGUAGE TemplateHaskell #-}
33

4+
{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations
5+
46
module Test.Cardano.Api.Typed.RawBytes
57
( tests
68
) where

Diff for: cardano-api/test/Test/Cardano/Api/Typed/Script.hs

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
{-# LANGUAGE TemplateHaskell #-}
22

3+
{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations
4+
35
module Test.Cardano.Api.Typed.Script
46
( tests
57
) where

Diff for: cardano-api/test/Test/Cardano/Api/Typed/Value.hs

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
{-# LANGUAGE TemplateHaskell #-}
22

3+
{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations
4+
35
module Test.Cardano.Api.Typed.Value
46
( tests
57
) where

Diff for: cardano-node-chairman/test/Main.hs

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
{-# LANGUAGE FlexibleInstances #-}
22

3+
{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations
4+
35
module Main
46
( main
57
) where

Diff for: cardano-testnet/test/Main.hs

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{-# LANGUAGE FlexibleInstances #-}
22
{-# LANGUAGE ImportQualifiedPost #-}
33

4+
{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations
5+
46
module Main
57
( main
68
) where

Diff for: cardano-testnet/test/Test/Util.hs

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations
2+
13
module Test.Util
24
( ignoreOn
35
, ignoreOnWindows

Diff for: flake.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)