Skip to content

Commit

Permalink
Bump hedgehog
Browse files Browse the repository at this point in the history
New versions:

* hedgehog-1.5 [>=1.1.2 && <1.6]
  • Loading branch information
tek committed Aug 3, 2024
1 parent 2facb04 commit d5ba8ce
Show file tree
Hide file tree
Showing 4 changed files with 134 additions and 6 deletions.
24 changes: 20 additions & 4 deletions ops/managed.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
};
hedgehog = {
lower = "1.1.2";
upper = "1.5";
upper = "1.6";
};
incipit-core = {
lower = "0.4.1.0";
Expand Down Expand Up @@ -77,7 +77,7 @@
};
hedgehog = {
lower = "1.1.2";
upper = "1.5";
upper = "1.6";
};
incipit-core = {
lower = "0.4.1.0";
Expand Down Expand Up @@ -149,7 +149,7 @@
latest-polysemy-conc = {
async = "2.2.5";
base = "4.19.1.0";
hedgehog = "1.4";
hedgehog = "1.5";
incipit-core = "0.6.0.0";
polysemy = "1.9.2.0";
polysemy-plugin = "0.4.5.2";
Expand All @@ -167,7 +167,7 @@
latest-polysemy-process = {
async = "2.2.5";
base = "4.19.1.0";
hedgehog = "1.4";
hedgehog = "1.5";
incipit-core = "0.6.0.0";
path = "0.9.5";
path-io = "1.8.2";
Expand Down Expand Up @@ -272,6 +272,10 @@
version = "1.0.9";
hash = "0irxfxy1qw7sif4408xdhqycddb4hs3hcf6xfxm65glsnmnmwl2i";
};
hedgehog = {
version = "1.5";
hash = "1hz8xrg5p6vplvcj8c7pgidqnwqjmqahs9dla50nqpbcbdh932ll";
};
incipit-base = {
version = "0.6.0.0";
hash = "1hck35yfy0dcgimgnd90w02zvv7x7k456bljrbx2mwxalnhav9gf";
Expand Down Expand Up @@ -300,12 +304,20 @@
version = "0.7.0.0";
hash = "0imvjiybxrsggh72pfkd226pvzhz5hg1zvxyd72b91a3xz1vynmq";
};
tasty-hedgehog = {
version = "1.4.0.2";
hash = "04kg2qdnsqzzmj3xggy2jcgidlp21lsjkz4sfnbq7b1yhrv2vbbc";
};
};
latest-polysemy-process = {
cabal-doctest = {
version = "1.0.9";
hash = "0irxfxy1qw7sif4408xdhqycddb4hs3hcf6xfxm65glsnmnmwl2i";
};
hedgehog = {
version = "1.5";
hash = "1hz8xrg5p6vplvcj8c7pgidqnwqjmqahs9dla50nqpbcbdh932ll";
};
incipit-base = {
version = "0.6.0.0";
hash = "1hck35yfy0dcgimgnd90w02zvv7x7k456bljrbx2mwxalnhav9gf";
Expand Down Expand Up @@ -338,6 +350,10 @@
version = "0.7.0.0";
hash = "0imvjiybxrsggh72pfkd226pvzhz5hg1zvxyd72b91a3xz1vynmq";
};
tasty-hedgehog = {
version = "1.4.0.2";
hash = "04kg2qdnsqzzmj3xggy2jcgidlp21lsjkz4sfnbq7b1yhrv2vbbc";
};
};
lower-polysemy-conc = {
aeson = {
Expand Down
112 changes: 112 additions & 0 deletions ops/overrides.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,39 @@ mkDerivation {
}
;
}
;
hedgehog = {
meta = {
sha256 = "1hz8xrg5p6vplvcj8c7pgidqnwqjmqahs9dla50nqpbcbdh932ll";
ver = "1.5";
};
drv = { mkDerivation, ansi-terminal, async, barbies, base, bytestring
, concurrent-output, containers, deepseq, directory, erf
, exceptions, lib, lifted-async, mmorph, monad-control, mtl
, pretty-show, primitive, random, resourcet, safe-exceptions, stm
, template-haskell, text, time, transformers, transformers-base
, wl-pprint-annotated
}:
mkDerivation {
pname = "hedgehog";
version = "1.5";
src = /nix/store/asphc2qzd1cykd892r5fnhflbd8cwana-source;
libraryHaskellDepends = [
ansi-terminal async barbies base bytestring concurrent-output
containers deepseq directory erf exceptions lifted-async mmorph
monad-control mtl pretty-show primitive random resourcet
safe-exceptions stm template-haskell text time transformers
transformers-base wl-pprint-annotated
];
testHaskellDepends = [
base containers mmorph mtl pretty-show text transformers
];
homepage = "https://hedgehog.qa";
description = "Release with confidence";
license = lib.licenses.bsd3;
}
;
}
;
incipit-base = {
meta = {
Expand Down Expand Up @@ -207,6 +240,29 @@ mkDerivation {
}
;
}
;
tasty-hedgehog = {
meta = {
sha256 = "04kg2qdnsqzzmj3xggy2jcgidlp21lsjkz4sfnbq7b1yhrv2vbbc";
ver = "1.4.0.2";
};
drv = { mkDerivation, base, hedgehog, lib, tagged, tasty
, tasty-expected-failure
}:
mkDerivation {
pname = "tasty-hedgehog";
version = "1.4.0.2";
src = /nix/store/b9mxq4fh65sif22q9a4g041jvp847cyc-source;
libraryHaskellDepends = [ base hedgehog tagged tasty ];
testHaskellDepends = [
base hedgehog tasty tasty-expected-failure
];
homepage = "https://github.com/qfpl/tasty-hedgehog";
description = "Integration for tasty and hedgehog";
license = lib.licenses.bsd3;
}
;
}
;
};
latest-polysemy-process = {
Expand All @@ -227,6 +283,39 @@ mkDerivation {
}
;
}
;
hedgehog = {
meta = {
sha256 = "1hz8xrg5p6vplvcj8c7pgidqnwqjmqahs9dla50nqpbcbdh932ll";
ver = "1.5";
};
drv = { mkDerivation, ansi-terminal, async, barbies, base, bytestring
, concurrent-output, containers, deepseq, directory, erf
, exceptions, lib, lifted-async, mmorph, monad-control, mtl
, pretty-show, primitive, random, resourcet, safe-exceptions, stm
, template-haskell, text, time, transformers, transformers-base
, wl-pprint-annotated
}:
mkDerivation {
pname = "hedgehog";
version = "1.5";
src = /nix/store/asphc2qzd1cykd892r5fnhflbd8cwana-source;
libraryHaskellDepends = [
ansi-terminal async barbies base bytestring concurrent-output
containers deepseq directory erf exceptions lifted-async mmorph
monad-control mtl pretty-show primitive random resourcet
safe-exceptions stm template-haskell text time transformers
transformers-base wl-pprint-annotated
];
testHaskellDepends = [
base containers mmorph mtl pretty-show text transformers
];
homepage = "https://hedgehog.qa";
description = "Release with confidence";
license = lib.licenses.bsd3;
}
;
}
;
incipit-base = {
meta = {
Expand Down Expand Up @@ -432,6 +521,29 @@ mkDerivation {
}
;
}
;
tasty-hedgehog = {
meta = {
sha256 = "04kg2qdnsqzzmj3xggy2jcgidlp21lsjkz4sfnbq7b1yhrv2vbbc";
ver = "1.4.0.2";
};
drv = { mkDerivation, base, hedgehog, lib, tagged, tasty
, tasty-expected-failure
}:
mkDerivation {
pname = "tasty-hedgehog";
version = "1.4.0.2";
src = /nix/store/b9mxq4fh65sif22q9a4g041jvp847cyc-source;
libraryHaskellDepends = [ base hedgehog tagged tasty ];
testHaskellDepends = [
base hedgehog tasty tasty-expected-failure
];
homepage = "https://github.com/qfpl/tasty-hedgehog";
description = "Integration for tasty and hedgehog";
license = lib.licenses.bsd3;
}
;
}
;
};
lower-polysemy-conc = {
Expand Down
2 changes: 1 addition & 1 deletion packages/conc/polysemy-conc.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ test-suite polysemy-conc-test
build-depends:
async >=2.2.4 && <2.3
, base >=4.17.2.1 && <4.20
, hedgehog >=1.1.2 && <1.5
, hedgehog >=1.1.2 && <1.6
, incipit-core >=0.4.1.0 && <0.7
, polysemy >=1.9.0.0 && <1.10
, polysemy-conc
Expand Down
2 changes: 1 addition & 1 deletion packages/process/polysemy-process.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ test-suite polysemy-process-test
build-depends:
async >=2.2.5 && <2.3
, base >=4.17.2.1 && <4.20
, hedgehog >=1.1.2 && <1.5
, hedgehog >=1.1.2 && <1.6
, incipit-core >=0.4.1.0 && <0.7
, polysemy >=1.9.0.0 && <1.10
, polysemy-conc >=0.14.1.0 && <0.15
Expand Down

0 comments on commit d5ba8ce

Please sign in to comment.