Skip to content

Commit

Permalink
v0.9.2 release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
ackleymi committed Apr 23, 2024
1 parent ad9438a commit 2f15490
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
## 0.9.2 (April 23, 2024)

### BUG FIXES
* 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
* Corrects validation of multiple repeating groups with different fields https://github.com/quickfixgo/quickfix/pull/623

## 0.9.1 (April 15, 2024)

### BUG FIXES
* Preserve original body when resending https://github.com/quickfixgo/quickfix/pull/624

## 0.9.0 (November 13, 2023)
Expand Down
2 changes: 1 addition & 1 deletion fix_decimal_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func TestFIXDecimalRead(t *testing.T) {
require.Equal(t, test.expectError, err != nil)

if !test.expectError {
assert.True(t, test.expected.Equals(field.Decimal), "Expected %s got %s", test.expected, field.Decimal)
assert.True(t, test.expected.Equal(field.Decimal), "Expected %s got %s", test.expected, field.Decimal)
}
}
}

0 comments on commit 2f15490

Please sign in to comment.