Version bump

This commit is contained in:
Mark Qvist 2022-02-23 22:53:16 +01:00
parent 27dea7c524
commit 987ff0658b
2 changed files with 10 additions and 1 deletions

View File

@ -34,6 +34,15 @@ class KISS():
data = data.replace(bytes([0xc0]), bytes([0xdb, 0xdc])) data = data.replace(bytes([0xc0]), bytes([0xdb, 0xdc]))
return data return data
# TODO: Neater shutdown of the event loop and
# better error handling is needed. Sometimes
# errors occur in I2P that leave tunnel setup
# hanging indefinitely, and right now we have
# no way of catching it. Sometimes the server
# and client tasks are also not cancelled on
# shutdown, which leads to errors dumped to
# the console. This should also be remedied.
class I2PController: class I2PController:
def __init__(self, rns_storagepath): def __init__(self, rns_storagepath):
import RNS.vendor.i2plib as i2plib import RNS.vendor.i2plib as i2plib

View File

@ -1 +1 @@
__version__ = "0.3.2" __version__ = "0.3.3"