File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ Changelog
66 Due to this library relying on external content, older versions are not guaranteed to work.
77 Try to always use the latest version.
88
9+ .. _v2.2.1 :
10+
11+ 2.2.1 (2019-08-10)
12+ ==================
13+
14+ - Fixed bug with character parsing failing when the guild rank is ``(member) ``.
915
1016.. _v2.2.0 :
1117
Original file line number Diff line number Diff line change 1313from tibiapy .creature import *
1414from tibiapy .client import *
1515
16- __version__ = '2.2.0 '
16+ __version__ = '2.2.1 '
1717
1818from logging import NullHandler
1919
Original file line number Diff line number Diff line change 2828death_reason = re .compile (r'by (?P<killers>[^.]+)(?:\.\s+Assisted by (?P<assists>.+))?' , re .DOTALL )
2929
3030house_regexp = re .compile (r'paid until (.*)' )
31- guild_regexp = re .compile (r'([\s\w]+)\sof the\s(.+)' )
31+ guild_regexp = re .compile (r'([\s\w() ]+)\sof the\s(.+)' )
3232
3333title_regexp = re .compile (r'(.*)\((\d+) titles unlocked\)' )
3434
You can’t perform that action at this time.
0 commit comments