Skip to content
This repository was archived by the owner on Dec 2, 2024. It is now read-only.

Commit 68efca7

Browse files
author
Evgenii Akentev
authored
Make 1.2.0 release. (#1009)
* Add 1.2.0 changelog entries * Bump package versions to 1.2.0 and update the version constraints
1 parent b80116b commit 68efca7

File tree

73 files changed

+442
-406
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+442
-406
lines changed

cardano-node-emulator/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11

2+
<a id='changelog-1.2.0'></a>
3+
# 1.2.0 — 2023-03-03
4+
5+
## Removed
6+
7+
- Removed `OpenApi.ToSchema` instance for `SlotConfig`.
8+
9+
- Remove `estimateTransactionFee`, `signTx`, `fromPlutusTx`, `fromPlutusTxSigned`, `fromPlutusTxSigned'` as the `Tx` was removed from `plutus-ledger`.
10+
11+
## Changed
12+
13+
- The default utxo provider for balancing now selects bigger inputs first when adding new inputs, to reduce the number of inputs.
14+
This was in particular a problem for collateral inputs, of which there can only be 3.
15+
216
<a id='changelog-1.1.0'></a>
317
# 1.1.0 — 2023-01-12
418

cardano-node-emulator/cardano-node-emulator.cabal

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: cardano-node-emulator
3-
version: 1.1.0.0
3+
version: 1.2.0.0
44

55
common lang
66
default-language: Haskell2010
@@ -40,9 +40,9 @@ library
4040
-- Local components
4141
--------------------
4242
build-depends:
43-
, freer-extras >=1.1.0
44-
, plutus-ledger >=1.1.0
45-
, plutus-script-utils >=1.1.0
43+
, freer-extras >=1.2.0
44+
, plutus-ledger >=1.2.0
45+
, plutus-script-utils >=1.2.0
4646

4747
--------------------------
4848
-- Other IOG dependencies
@@ -96,9 +96,9 @@ test-suite cardano-node-emulator-test
9696
-- Local components
9797
--------------------
9898
build-depends:
99-
, cardano-node-emulator >=1.0.0
100-
, plutus-ledger >=1.0.0
101-
, plutus-script-utils >=1.0.0
99+
, cardano-node-emulator >=1.2.0
100+
, plutus-ledger >=1.2.0
101+
, plutus-script-utils >=1.2.0
102102

103103
--------------------------
104104
-- Other IOG dependencies

cardano-node-emulator/changelog.d/20230116_160622_ak3n_remove_freer_extras_plutus_ledger.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

cardano-node-emulator/changelog.d/20230201_135624_sjoerd.visscher_PLT_1356_MaxCollateralInputs.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

cardano-node-emulator/changelog.d/20230302_122332_ak3n_drop_emulator_tx.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

cardano-streaming/changelog.d/20221207_115251_markus.lall_plt_171_wip.md renamed to cardano-streaming/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1-
### Added
1+
2+
<a id='changelog-1.2.0'></a>
3+
# 1.2.0 — 2023-03-03
4+
5+
## Added
26

37
- Fold blocks into ledger state at client side using local chainsync protocol, both pipelined and non-pipelined versions are provided.

cardano-streaming/cardano-streaming.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: cardano-streaming
3-
version: 1.1.0.0
3+
version: 1.2.0.0
44
author: Andrea Bedini
55
maintainer: andrea.bedini@iohk.io
66

@@ -102,7 +102,7 @@ executable cardano-streaming-example-2
102102
--------------------
103103
build-depends:
104104
, cardano-streaming
105-
, plutus-ledger >=1.0.0
105+
, plutus-ledger >=1.2.0
106106

107107
--------------------------
108108
-- Other IOG dependencies
@@ -131,8 +131,8 @@ executable cardano-streaming-example-3
131131
-- Local components
132132
--------------------
133133
build-depends:
134-
, cardano-streaming
135-
, plutus-chain-index-core >=1.0.0
134+
, cardano-streaming >=1.2.0
135+
, plutus-chain-index-core >=1.2.0
136136

137137
--------------------------
138138
-- Other IOG dependencies

doc/plutus-doc.cabal

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: plutus-doc
3-
version: 1.1.0.0
3+
version: 1.2.0.0
44
license: Apache-2.0
55
license-files:
66
LICENSE
@@ -77,14 +77,14 @@ executable doc-doctests
7777
-- Local components
7878
--------------------
7979
build-depends:
80-
, cardano-node-emulator >=1.0.0
81-
, freer-extras >=1.0.0
82-
, plutus-chain-index-core >=1.0.0
83-
, plutus-contract >=1.0.0
84-
, plutus-ledger >=1.0.0
85-
, plutus-script-utils >=1.0.0
86-
, plutus-tx-constraints >=1.0.0
87-
, plutus-use-cases >=1.0.0
80+
, cardano-node-emulator >=1.2.0
81+
, freer-extras >=1.2.0
82+
, plutus-chain-index-core >=1.2.0
83+
, plutus-contract >=1.2.0
84+
, plutus-ledger >=1.2.0
85+
, plutus-script-utils >=1.2.0
86+
, plutus-tx-constraints >=1.2.0
87+
, plutus-use-cases >=1.2.0
8888

8989
--------------------------
9090
-- Other IOG dependencies
@@ -129,12 +129,12 @@ test-suite basic-app
129129
-- Local components
130130
--------------------
131131
build-depends:
132-
, cardano-node-emulator >=1.0.0
133-
, freer-extras >=1.0.0
134-
, plutus-contract >=1.0.0
135-
, plutus-ledger >=1.0.0
136-
, plutus-script-utils >=1.0.0
137-
, plutus-tx-constraints >=1.0.0
132+
, cardano-node-emulator >=1.2.0
133+
, freer-extras >=1.2.0
134+
, plutus-contract >=1.2.0
135+
, plutus-ledger >=1.2.0
136+
, plutus-script-utils >=1.2.0
137+
, plutus-tx-constraints >=1.2.0
138138

139139
--------------------------
140140
-- Other IOG dependencies

freer-extras/changelog.d/20230116_160818_ak3n_remove_freer_extras_plutus_ledger.md renamed to freer-extras/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1-
### Removed
1+
2+
<a id='changelog-1.2.0'></a>
3+
# 1.2.0 — 2023-03-03
4+
5+
## Removed
26

37
- Removed `OpenApi.ToSchema` instance for `PageQuery a`, `PageSize`, and `Page a`.

freer-extras/freer-extras.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: freer-extras
3-
version: 1.1.0.0
3+
version: 1.2.0.0
44
synopsis: Useful extensions to simple-freer
55
description:
66
freer-extras provides logging and monitoring functions extending simple-freer
@@ -90,7 +90,7 @@ test-suite freer-extras-test
9090
----------------------------
9191
-- Local components
9292
----------------------------
93-
build-depends: freer-extras
93+
build-depends: freer-extras >=1.2.0
9494

9595
------------------------
9696
-- Non-IOG dependencies

0 commit comments

Comments
 (0)