Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
markqvist committed Feb 23, 2022
1 parent 27dea7c commit 987ff06
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions RNS/Interfaces/I2PInterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,15 @@ def escape(data):
data = data.replace(bytes([0xc0]), bytes([0xdb, 0xdc]))
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:
def __init__(self, rns_storagepath):
import RNS.vendor.i2plib as i2plib
Expand Down
2 changes: 1 addition & 1 deletion RNS/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.2"
__version__ = "0.3.3"

0 comments on commit 987ff06

Please sign in to comment.