Skip to content

Commit 91bc22b

Browse files
committed
bench | tracing: Node 10.3 package bumps
1 parent b2945e0 commit 91bc22b

File tree

7 files changed

+17
-11
lines changed

7 files changed

+17
-11
lines changed

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

+4-4
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,
@@ -83,9 +83,9 @@ library
8383
--------------------------
8484
build-depends:
8585
, cardano-api ^>=10.10
86-
, plutus-ledger-api ^>=1.37
87-
, plutus-tx ^>=1.37
88-
, plutus-tx-plugin ^>=1.37
86+
, plutus-ledger-api ^>=1.40
87+
, plutus-tx ^>=1.40
88+
, plutus-tx-plugin ^>=1.40
8989

9090
------------------------
9191
-- Non-IOG dependencies

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

cabal.project

+1
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ source-repository-package
8484
plutus-core
8585
plutus-ledger-api
8686
plutus-tx
87+
plutus-tx-plugin
8788

8889
source-repository-package
8990
type: git

cardano-node/cardano-node.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -209,8 +209,8 @@ library
209209
, strict-sop-core
210210
, strict-stm
211211
, time
212-
, trace-dispatcher ^>= 2.8.1
213-
, trace-forward ^>= 2.2.10
212+
, trace-dispatcher ^>= 2.9
213+
, trace-forward ^>= 2.2.11
214214
, trace-resources ^>= 0.2.3
215215
, tracer-transformers
216216
, 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)