Skip to content

Commit 54ce4b4

Browse files
mgmeieraniketd
authored andcommitted
bench | tracing: Node 10.3 package bumps
1 parent 5df1be2 commit 54ce4b4

File tree

6 files changed

+13
-8
lines changed

6 files changed

+13
-8
lines changed

bench/plutus-scripts-bench/plutus-scripts-bench.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: plutus-scripts-bench
3-
version: 1.0.4.2
3+
version: 1.0.4.3
44
synopsis: Plutus scripts used for benchmarking
55
description: Plutus scripts used for benchmarking.
66
category: Cardano,

bench/tx-generator/tx-generator.cabal

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 3.0
22

33
name: tx-generator
4-
version: 2.14.2
4+
version: 2.15
55
synopsis: A transaction workload generator for Cardano clusters
66
description: A transaction workload generator for Cardano clusters.
77
category: Cardano,
@@ -17,6 +17,11 @@ extra-source-files: README.md
1717
data-files: data/*.json
1818
scripts-fallback/*.plutus
1919

20+
flag withplutuslib
21+
description: Enable import and re-compilation of Plutus scripts from plutus-scripts-bench. Default: false; use for dev/test of new benchmarks only.
22+
default: False
23+
manual: True
24+
2025
common project-config
2126
if os(windows)
2227
buildable: False
@@ -25,7 +30,7 @@ common with-library
2530
-- This is the inverse to the "buildable" GHC version constraint in plutus-scripts-bench.
2631
-- It makes sure, we only depend on that package if it is buildable.
2732
-- The tx-generator will fall back to pre-serialized Plutus scripts if this package is not present.
28-
if !(impl(ghc <9.6) || impl(ghc >=9.7))
33+
if flag(withplutuslib) && !(impl(ghc <9.6) || impl(ghc >=9.7))
2934
build-depends: plutus-scripts-bench ^>= 1.0.4
3035
cpp-options: -DWITH_LIBRARY
3136

cardano-node/cardano-node.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -211,8 +211,8 @@ library
211211
, strict-sop-core
212212
, strict-stm
213213
, time
214-
, trace-dispatcher ^>= 2.8.1
215-
, trace-forward ^>= 2.2.10
214+
, trace-dispatcher ^>= 2.9
215+
, trace-forward ^>= 2.2.11
216216
, trace-resources ^>= 0.2.3
217217
, tracer-transformers
218218
, transformers

cardano-tracer/cardano-tracer.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 3.0
22

33
name: cardano-tracer
4-
version: 0.3.1
4+
version: 0.3.2
55
synopsis: A service for logging and monitoring over Cardano nodes
66
description: A service for logging and monitoring over Cardano nodes.
77
category: Cardano,

trace-dispatcher/trace-dispatcher.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 3.0
22

33
name: trace-dispatcher
4-
version: 2.8.1
4+
version: 2.9
55
synopsis: Tracers for Cardano
66
description: Package for development of simple and efficient tracers
77
based on the arrow based contra-tracer package

trace-forward/trace-forward.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 3.0
22

33
name: trace-forward
4-
version: 2.2.10
4+
version: 2.2.11
55
synopsis: The forwarding protocols library for cardano node.
66
description: The library providing typed protocols for forwarding different
77
information from the cardano node to an external application.

0 commit comments

Comments
 (0)