Skip to content

Commit

Permalink
Release 2.2.0
Browse files Browse the repository at this point in the history
Signed-off-by: Ludovic Rousseau <[email protected]>
  • Loading branch information
LudovicRousseau committed Oct 20, 2024
1 parent 770a11a commit 099a282
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 deletions.
19 changes: 17 additions & 2 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,7 +1,22 @@
Unreleased changes
==================
2.2.0 (October 2024)
====================
- patches from Ludovic Rousseau
* PCSCCardRequest:
- handle KeyboardInterrupt in waitforcard() & waitforcardevent()
- use a local PC/SC context to avoid locks
* smartcard.util.padd(): do NOT modify the input parameter
* CardMonitoring: a timeout exception IS expected
* Fix pydoctor documentation
* wx: fix module and examples
* Minor changes
- patches from Kurt McKee
* Remove Python 2 conditional code
* Eliminate Windows Vista and Windows 7 conditionals
* Test and improve the synchronization code
* Test and update the `Observer.py` code
* Remove `ClassLoader.py`
* Migrate a `src/` layout
* Migrate test/* from unittest to pytest
* Add missing GSM 03.38 symbols for decoding
* Support only Python 3.9 and higher
* Remove the Python 2.x-only Pyro dependency
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
except:
platform_include_dirs = ["/usr/include/PCSC", "/usr/local/include/PCSC"]

VERSION_INFO = (2, 1, 1, 0)
VERSION_INFO = (2, 2, 0, 0)
VERSION_STR = "%i.%i.%i" % VERSION_INFO[:3]
VERSION_ALT = "%i,%01i,%01i,%04i" % VERSION_INFO

Expand Down
4 changes: 2 additions & 2 deletions src/smartcard/doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
# built documents.
#
# The short X.Y version.
version = "2.1.1"
version = "2.2.0"
# The full version, including alpha/beta/rc tags.
release = "2.1.1"
release = "2.2.0"

pygments_style = "sphinx"

Expand Down

0 comments on commit 099a282

Please sign in to comment.