Skip to content

Commit

Permalink
Release v0.12.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jcass77 committed Jul 4, 2019
2 parents a964f77 + 090b381 commit 806659d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
10 changes: 9 additions & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,19 @@

This changelog is used to track all major changes to WTFIX.

## v0.12.3 (2019-07-04)

**Fixes**

- Fixed encoding of `PossDupFlag` in `EncoderApp`.
- Fixed setting of `OrigSendingTime` tag for messages that are resent.


## v0.12.2 (2019-07-04)

**Fixes**

- ClientSessionApp: handle NoneType error when shutting down.
- `ClientSessionApp`: handle `NoneType` error when shutting down.

## v0.12.1 (2019-07-04)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="wtfix",
version="0.12.2",
version="0.12.3",
author="John Cass",
author_email="john.cass77@gmail.com",
description="The Pythonic Financial Information eXchange (FIX) client for humans.",
Expand Down
2 changes: 1 addition & 1 deletion wtfix/apps/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@ async def _handle_resend_request(self, message):
) # Make a copy so that we do not change entries in the send log.
resend_msg.MsgSeqNum = next_seq_num
resend_msg.PossDupFlag = "Y"
resend_msg.OrigSendingTime = resend_msg.SendingTime
resend_msg.OrigSendingTime = str(resend_msg.SendingTime)

self.send(resend_msg)
next_seq_num += 1
Expand Down
1 change: 0 additions & 1 deletion wtfix/apps/wire.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ class EncoderApp(BaseApp):
Tag.SenderCompID,
Tag.TargetCompID,
Tag.SendingTime,
Tag.PossDupFlag,
Tag.DeliverToCompID,
}

Expand Down

0 comments on commit 806659d

Please sign in to comment.