Skip to content

Commit

Permalink
Prepare 1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dainnilsson committed Feb 28, 2019
1 parent 1d5a96d commit a72e8ed
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
* Version 1.3.3 (released 2019-02-28)
** Fixes in Python 3 compatibility.

* Version 1.3.2 (released 2016-02-23)
** Various fixes to sequence number checking.
** Fix issue with using an access code with the debug flag on.
Expand Down
2 changes: 1 addition & 1 deletion yubico/yubico_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.3.2"
__version__ = "1.3.3"
2 changes: 1 addition & 1 deletion yubico/yubikey_usb_hid.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def __del__(self):
try:
if self._usb_handle:
self._close()
except IOError:
except (IOError, AttributeError):
pass

def _write_config(self, cfg, slot):
Expand Down

0 comments on commit a72e8ed

Please sign in to comment.