File tree 2 files changed +5
-4
lines changed
src/concurrent_log_handler
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
3
- 0.9.25:
4
- - Improvements to project config (` pyproject.toml ` ) with ` hatch ` . Thanks @stumpylog .
5
- - Fixes [ #66 ] ( https://github.com/Preston-Landers/concurrent-log-handler/issues/66 )
4
+ - Improvements to project config (` pyproject.toml ` ) with ` hatch ` (PR #65 ), and the addition of
5
+ Python typing hints (PR #69 ). Thanks @stumpylog .
6
+ - Fixes [ Issue #66 ] ( https://github.com/Preston-Landers/concurrent-log-handler/issues/66 )
6
7
Timed mode rollover fails if backupCount limit is hit and gzip is on. Thanks @moynihan .
7
- - Fixes [ #60 ] ( https://github.com/Preston-Landers/concurrent-log-handler/issues/60 )
8
+ - Fixes [ Issue #60 ] ( https://github.com/Preston-Landers/concurrent-log-handler/issues/60 )
8
9
Timed mode causes DeprecationWarning if you don't give the ` delay ` parameter. Thanks @platinops .
9
10
10
11
- 0.9.24:
Original file line number Diff line number Diff line change @@ -874,7 +874,7 @@ def getFilesToDelete(self) -> List[str]:
874
874
as when hitting a size limit before the time limit.
875
875
"""
876
876
877
- # If Python > 3.9, then use the superclass method.
877
+ # If Python is 3.9 or later , then use the superclass method.
878
878
if sys .version_info >= (3 , 9 ):
879
879
return super ().getFilesToDelete ()
880
880
You can’t perform that action at this time.
0 commit comments