File tree 6 files changed +32
-9
lines changed
6 files changed +32
-9
lines changed Original file line number Diff line number Diff line change @@ -128,6 +128,12 @@ jobs:
128
128
if : runner.os == 'Linux'
129
129
run : sudo apt-get -y install autoconf automake libtool
130
130
131
+ # macOS doesn't come with pkg-config out of the box.
132
+ - name : " MAC: Install pkg-config (brew)"
133
+ if : runner.os == 'macOS'
134
+ run : |
135
+ brew install pkg-config
136
+
131
137
- name : " MAC: Install build environment (brew)"
132
138
if : runner.os == 'macOS'
133
139
run : |
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ repository cardano-haskell-packages
13
13
-- See CONTRIBUTING for information about these, including some Nix commands
14
14
-- you need to run if you change them
15
15
index-state : 2022-09-27T18:00 :00Z
16
- index-state : cardano-haskell-packages 2023-01-26T18:00 :00Z
16
+ index-state : cardano-haskell-packages 2023-02-16T13:42 :30Z
17
17
18
18
packages :
19
19
cardano-api
Original file line number Diff line number Diff line change 1
1
# Changelog for cardano-node
2
2
3
- ## 1.35.5 -- January 2023
3
+ ## 1.35.6 -- Febuary 2023
4
4
5
- ### node changes
5
+ ### consensus changes
6
6
7
7
None
8
8
9
- ### consensus changes
9
+ ### ledger changes
10
10
11
11
None
12
12
25
25
format will be supported for next two major releases of the node (the last
26
26
major version which will support it is ` 1.37 ` ). (#4563 )
27
27
28
+ - Fixed a tight loop when demoting a peer from hot to warm timeouts
29
+ (input-output-hk/ouroboros-network #4357 ).
30
+
28
31
[ #4563 ] : https://github.com/input-output-hk/cardano-node/issues/4563
29
32
[ understanding-config-files ] : https://github.com/input-output-hk/cardano-node/blob/master/doc/getting-started/understanding-config-files.md
30
33
34
+ ## 1.35.5 -- January 2023
35
+
36
+ ### node changes
37
+
38
+ None
39
+
40
+ ### consensus changes
41
+
42
+ None
43
+
31
44
### ledger changes
32
45
33
46
None
34
47
48
+ ### network changes
49
+
50
+ None
51
+
35
52
## 1.35.4 -- October 2022
36
53
37
54
### node changes
Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ library
169
169
, ouroboros-consensus-cardano ^>= 0.2
170
170
, ouroboros-consensus-protocol
171
171
, ouroboros-consensus-shelley
172
- , ouroboros-network ^>= 0.3
172
+ , ouroboros-network ^>= 0.3.0.1
173
173
, ouroboros-network-framework ^>= 0.2
174
174
, psqueues
175
175
, safe-exceptions
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ common mtl { build-depends: mtl
33
33
common network { build-depends : network >= 3.1.2.1 }
34
34
common optparse-applicative-fork { build-depends : optparse-applicative-fork >= 0.16.1.0 }
35
35
common ouroboros-consensus-cardano { build-depends : ouroboros-consensus-cardano >= 0.1.0.0 }
36
- common ouroboros-network { build-depends : ouroboros-network >= 0.3.0.0 }
36
+ common ouroboros-network { build-depends : ouroboros-network >= 0.3.0.1 }
37
37
common prometheus { build-depends : prometheus >= 2.2.2 }
38
38
common protolude { build-depends : protolude >= 0.3.0 }
39
39
common servant { build-depends : servant >= 0.18.2 }
You can’t perform that action at this time.
0 commit comments