From 5b33918778e37f817cae8d84558d27f0c2221f39 Mon Sep 17 00:00:00 2001 From: Marcin Szamotulski Date: Thu, 26 Oct 2023 14:02:43 +0200 Subject: [PATCH] Bump versions --- cardano-client/CHANGELOG.md | 6 ++++++ cardano-client/cardano-client.cabal | 4 ++-- network-mux/CHANGELOG.md | 8 +++++++- network-mux/network-mux.cabal | 2 +- ntp-client/CHANGELOG.md | 10 ++++++++++ ntp-client/ntp-client.cabal | 2 +- ouroboros-network-api/CHANGELOG.md | 9 ++++++++- ouroboros-network-api/ouroboros-network-api.cabal | 2 +- ouroboros-network-framework/CHANGELOG.md | 8 +++++++- .../ouroboros-network-framework.cabal | 6 +++--- ouroboros-network-mock/CHANGELOG.md | 6 ++++++ ouroboros-network-mock/ouroboros-network-mock.cabal | 2 +- ouroboros-network-protocols/CHANGELOG.md | 8 +++++--- .../ouroboros-network-protocols.cabal | 4 ++-- ouroboros-network-testing/CHANGELOG.md | 6 ++++++ .../ouroboros-network-testing.cabal | 2 +- ouroboros-network/CHANGELOG.md | 8 +++++++- ouroboros-network/ouroboros-network.cabal | 12 ++++++------ 18 files changed, 80 insertions(+), 25 deletions(-) diff --git a/cardano-client/CHANGELOG.md b/cardano-client/CHANGELOG.md index 5ab16f06f35..7a364e55c1a 100644 --- a/cardano-client/CHANGELOG.md +++ b/cardano-client/CHANGELOG.md @@ -6,6 +6,12 @@ ### Non-breaking changes +## 0.3.0.1 -- 2023-10-26 + +### Non-breaking changes + +* Updated bounds. + ## 0.3.0.0 -- 2023-08-09 ### Breaking changes diff --git a/cardano-client/cardano-client.cabal b/cardano-client/cardano-client.cabal index 7e44efccd31..b7d2594a1a6 100644 --- a/cardano-client/cardano-client.cabal +++ b/cardano-client/cardano-client.cabal @@ -1,7 +1,7 @@ cabal-version: 3.0 name: cardano-client -version: 0.3.0.0 +version: 0.3.0.1 synopsis: An API for ouroboros-network description: An API for ouroboros-network. license: Apache-2.0 @@ -23,7 +23,7 @@ library containers, ouroboros-network-api ^>= 0.5.1, ouroboros-network ^>= 0.9, - ouroboros-network-framework >= 0.8 && < 0.10, + ouroboros-network-framework >= 0.8 && < 0.11, network-mux ^>= 0.4, ghc-options: -Wall diff --git a/network-mux/CHANGELOG.md b/network-mux/CHANGELOG.md index 4b84462ce0e..c72ddf8fd43 100644 --- a/network-mux/CHANGELOG.md +++ b/network-mux/CHANGELOG.md @@ -1,6 +1,12 @@ # Revision history for mux -## next +## next release + +### Breaking changes + +### Non-breaking changes + +## 0.4.1.0 ### Breaking diff --git a/network-mux/network-mux.cabal b/network-mux/network-mux.cabal index 0301335669e..a5d7fb67deb 100644 --- a/network-mux/network-mux.cabal +++ b/network-mux/network-mux.cabal @@ -1,7 +1,7 @@ cabal-version: 3.0 name: network-mux -version: 0.4.0.0 +version: 0.4.1.0 synopsis: Multiplexing library description: Multiplexing library. license: Apache-2.0 diff --git a/ntp-client/CHANGELOG.md b/ntp-client/CHANGELOG.md index 6f4a0f99f80..7deb0f4fe3e 100644 --- a/ntp-client/CHANGELOG.md +++ b/ntp-client/CHANGELOG.md @@ -1,5 +1,15 @@ # Revision history for ntp-client +## next release + +### Breaking changes + +### Non-breaking changes + +## 0.0.1.2 -- 2023-10-26 + +* fixed cabal warnings + ## 0.0.1.1 -- 2023-04-28 ### Non-breaking changes diff --git a/ntp-client/ntp-client.cabal b/ntp-client/ntp-client.cabal index 7959f5d965e..a35a63051e0 100644 --- a/ntp-client/ntp-client.cabal +++ b/ntp-client/ntp-client.cabal @@ -1,7 +1,7 @@ cabal-version: 3.0 name: ntp-client -version: 0.0.1.1 +version: 0.0.1.2 synopsis: NTP client description: NTP client. license: Apache-2.0 diff --git a/ouroboros-network-api/CHANGELOG.md b/ouroboros-network-api/CHANGELOG.md index 80b713335af..0a518160db8 100644 --- a/ouroboros-network-api/CHANGELOG.md +++ b/ouroboros-network-api/CHANGELOG.md @@ -1,11 +1,18 @@ # Revision history for ouroboros-network-api -## next version +## next release ### Breaking changes ### Non-breaking changes + +## 0.5.1.1 -- 2023-10-26 + +### Non-breaking changes + +* Depend on `type-protocols-0.1.1.0`. + ## 0.5.1.0 -- 2023-08-09 ### Breaking changes diff --git a/ouroboros-network-api/ouroboros-network-api.cabal b/ouroboros-network-api/ouroboros-network-api.cabal index 85d5709f2cf..b9fb19aad61 100644 --- a/ouroboros-network-api/ouroboros-network-api.cabal +++ b/ouroboros-network-api/ouroboros-network-api.cabal @@ -1,6 +1,6 @@ cabal-version: 3.0 name: ouroboros-network-api -version: 0.5.1.0 +version: 0.5.1.1 synopsis: A networking api shared with ouroboros-consensus description: A networking api shared with ouroboros-consensus. license: Apache-2.0 diff --git a/ouroboros-network-framework/CHANGELOG.md b/ouroboros-network-framework/CHANGELOG.md index 133a82990f3..b92f96af685 100644 --- a/ouroboros-network-framework/CHANGELOG.md +++ b/ouroboros-network-framework/CHANGELOG.md @@ -1,6 +1,12 @@ # Revision history for ouroboros-network-framework -## next version +## next release + +### Breaking changes + +### Non-breaking changes + +## 0.10.0.0 -- 2023-10-26 ### Breaking changes diff --git a/ouroboros-network-framework/ouroboros-network-framework.cabal b/ouroboros-network-framework/ouroboros-network-framework.cabal index fa1c37c2aed..b611c07230b 100644 --- a/ouroboros-network-framework/ouroboros-network-framework.cabal +++ b/ouroboros-network-framework/ouroboros-network-framework.cabal @@ -1,6 +1,6 @@ cabal-version: 3.0 name: ouroboros-network-framework -version: 0.9.0.0 +version: 0.10.0.0 synopsis: Ouroboros network framework description: Ouroboros network framework. license: Apache-2.0 @@ -98,9 +98,9 @@ library , monoidal-synchronisation ^>=0.1.0.3 , network >=3.1.2.2 && < 3.2 - , network-mux ^>=0.4 + , network-mux ^>=0.4.1 , ouroboros-network-api - ^>=0.5.1 + ^>=0.5.1.1 , ouroboros-network-testing , typed-protocols ^>=0.1.1 , typed-protocols-cborg diff --git a/ouroboros-network-mock/CHANGELOG.md b/ouroboros-network-mock/CHANGELOG.md index de9ff03c0dd..e94202e4a5f 100644 --- a/ouroboros-network-mock/CHANGELOG.md +++ b/ouroboros-network-mock/CHANGELOG.md @@ -1,5 +1,11 @@ # Revision history for ouroboros-network-mock +## 0.1.0.2 -- 2023-10-26 + +### Non-breaking changes + +* Fixed cabal warnings. + ## 0.1.0.1 -- 2023-04-28 ### Non-breaking changes diff --git a/ouroboros-network-mock/ouroboros-network-mock.cabal b/ouroboros-network-mock/ouroboros-network-mock.cabal index 8239908d662..f02a7ab60e9 100644 --- a/ouroboros-network-mock/ouroboros-network-mock.cabal +++ b/ouroboros-network-mock/ouroboros-network-mock.cabal @@ -1,7 +1,7 @@ cabal-version: 3.0 name: ouroboros-network-mock -version: 0.1.0.1 +version: 0.1.0.2 synopsis: Ouroboros Network Chain for testing purposes description: Ouroboros Network Chain for testing purposes. license: Apache-2.0 diff --git a/ouroboros-network-protocols/CHANGELOG.md b/ouroboros-network-protocols/CHANGELOG.md index 017af7ceece..221a7e64315 100644 --- a/ouroboros-network-protocols/CHANGELOG.md +++ b/ouroboros-network-protocols/CHANGELOG.md @@ -1,19 +1,21 @@ # Revision history for ouroboros-network-protocols -## next version +## next release ### Breaking changes ### Non-breaking changes +## 0.5.3.0 -- 2023-10-26 + +### Non-breaking changes + * Improved cdd specs by using `any` (PR #4638) * Add a 3673s timeout to chainsync's StIdle state. * Add a 97s timeout to keepalive's StClient state. ## 0.5.2.0 -- 2023-09-08 -### Breaking changes - ### Non-breaking changes * Use `io-classes-1.2`. diff --git a/ouroboros-network-protocols/ouroboros-network-protocols.cabal b/ouroboros-network-protocols/ouroboros-network-protocols.cabal index 41cfaf01112..aafb333397a 100644 --- a/ouroboros-network-protocols/ouroboros-network-protocols.cabal +++ b/ouroboros-network-protocols/ouroboros-network-protocols.cabal @@ -1,6 +1,6 @@ cabal-version: 3.0 name: ouroboros-network-protocols -version: 0.5.2.0 +version: 0.5.3.0 synopsis: Ouroboros Network Protocols description: Ouroboros Network Protocols. license: Apache-2.0 @@ -203,7 +203,7 @@ test-suite test ouroboros-network-api, ouroboros-network-mock, ouroboros-network-protocols:testlib, - ouroboros-network-testing ^>= 0.3 + ouroboros-network-testing ^>= 0.4 ghc-options: -threaded -Wall diff --git a/ouroboros-network-testing/CHANGELOG.md b/ouroboros-network-testing/CHANGELOG.md index cd7b5454e2b..e2938b811a0 100644 --- a/ouroboros-network-testing/CHANGELOG.md +++ b/ouroboros-network-testing/CHANGELOG.md @@ -4,6 +4,12 @@ ### Breaking changes +### Non-breaking changes + +## 0.4.0.0 -- 2023-10-26 + +### Breaking changes + - Changed `prop_shrink_valid` to use `ShrinkCarefully` - Changed `prop_shrink_nonempty` to use `ShrinkCarefully` (formerlly `prop_shrinkCarefully` was defined in `ouroboros-network:sim-test`) diff --git a/ouroboros-network-testing/ouroboros-network-testing.cabal b/ouroboros-network-testing/ouroboros-network-testing.cabal index f24af2f9bdf..156d835974f 100644 --- a/ouroboros-network-testing/ouroboros-network-testing.cabal +++ b/ouroboros-network-testing/ouroboros-network-testing.cabal @@ -1,7 +1,7 @@ cabal-version: 3.0 name: ouroboros-network-testing -version: 0.3.1.0 +version: 0.4.0.0 synopsis: Common modules used for testing in ouroboros-network and ouroboros-consensus description: Common modules used for testing in ouroboros-network and ouroboros-consensus. license: Apache-2.0 diff --git a/ouroboros-network/CHANGELOG.md b/ouroboros-network/CHANGELOG.md index f040d80fd48..911b3c1f0a6 100644 --- a/ouroboros-network/CHANGELOG.md +++ b/ouroboros-network/CHANGELOG.md @@ -1,6 +1,12 @@ # Revision history for ouroboros-network -## next version +## next release + +### Breaking changes + +### Non-breaking changes + +## 0.9.2.0 -- 2023-10-26 ### Breaking changes diff --git a/ouroboros-network/ouroboros-network.cabal b/ouroboros-network/ouroboros-network.cabal index 712802d8291..90edf43ad34 100644 --- a/ouroboros-network/ouroboros-network.cabal +++ b/ouroboros-network/ouroboros-network.cabal @@ -1,6 +1,6 @@ cabal-version: 3.0 name: ouroboros-network -version: 0.9.1.0 +version: 0.9.2.0 synopsis: A networking layer for the Ouroboros blockchain protocol description: A networking layer for the Ouroboros blockchain protocol. license: Apache-2.0 @@ -125,9 +125,9 @@ library io-classes-mtl ^>=0.1, network-mux, si-timers, - ouroboros-network-api ^>=0.5.1, - ouroboros-network-framework ^>=0.9, - ouroboros-network-protocols ^>=0.5.2.0, + ouroboros-network-api ^>=0.5.1.1, + ouroboros-network-framework ^>=0.10, + ouroboros-network-protocols ^>=0.5.3.0, strict-stm, typed-protocols ^>=0.1.1, if !os(windows) @@ -223,7 +223,7 @@ test-suite sim-tests ouroboros-network-protocols, ouroboros-network-protocols:testlib, ouroboros-network-framework:testlib, - ouroboros-network-testing ^>= 0.3, + ouroboros-network-testing ^>= 0.4, si-timers, strict-stm, typed-protocols, @@ -266,7 +266,7 @@ test-suite io-tests ouroboros-network-protocols, ouroboros-network-protocols:testlib, ouroboros-network-framework:testlib, - ouroboros-network-testing ^>= 0.3, + ouroboros-network-testing ^>= 0.4, si-timers, strict-stm, with-utf8,