Skip to content

Commit 2f15490

Browse files
committed
v0.9.2 release notes
1 parent ad9438a commit 2f15490

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1+
## 0.9.2 (April 23, 2024)
2+
3+
### BUG FIXES
4+
* Prevent message queue blocking in the case of network connection trouble https://github.com/quickfixgo/quickfix/pull/615 https://github.com/quickfixgo/quickfix/pull/628
5+
* Corrects validation of multiple repeating groups with different fields https://github.com/quickfixgo/quickfix/pull/623
6+
17
## 0.9.1 (April 15, 2024)
8+
9+
### BUG FIXES
210
* Preserve original body when resending https://github.com/quickfixgo/quickfix/pull/624
311

412
## 0.9.0 (November 13, 2023)

fix_decimal_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ func TestFIXDecimalRead(t *testing.T) {
6060
require.Equal(t, test.expectError, err != nil)
6161

6262
if !test.expectError {
63-
assert.True(t, test.expected.Equals(field.Decimal), "Expected %s got %s", test.expected, field.Decimal)
63+
assert.True(t, test.expected.Equal(field.Decimal), "Expected %s got %s", test.expected, field.Decimal)
6464
}
6565
}
6666
}

0 commit comments

Comments
 (0)