Bump to 1.2.1

This commit is contained in:
sirMackk
2018-09-29 10:22:37 -07:00
parent 695ee2b831
commit 396a5438a7
3 changed files with 10 additions and 3 deletions
+7
View File
@@ -1,8 +1,15 @@
# CHANGELOG
### 1.2.1 (September 29, 2018)
- Change logger to module logger (thanks schrd!)
- Add flake8 to tests; Fix style issues; Make travis fail on test errors.
### 1.2.0 (September 08, 2018)
- Adds windowsize option handling for RRQ (many thanks jpmzometa!)
- Adds tsize option for RRQ (thanks schrd!)
- handle error packets if client aborts RRQ transfer (thanks schrd!)
### 1.1.0 (August 24, 2018)
+1 -1
View File
@@ -1 +1 @@
__version__ = '1.2.0'
__version__ = '1.2.1'
+2 -2
View File
@@ -161,8 +161,8 @@ class BaseTFTPProtocol(asyncio.DatagramProtocol):
to offending client.
"""
logger.info(('Closing connection to {0} due to error. '
'"{1}" Not transmitted.').format(self.remote_addr,
self.filename))
'"{1}" Not transmitted.').format(self.remote_addr,
self.filename))
self.conn_reset()
asyncio.get_event_loop().call_soon(self.transport.close)