diff --git a/ChangeLog b/ChangeLog index 00ca5613..b66fa5bd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2.0.0 (September 2020) +====================== + + * SCardStatus(): Fix a crash in case of PC/SC error + * toASCIIString(): replace non-ASCII char by '.' + * remove i386 (32-bits) support on macOS + 1.9.9 (August 2019) =================== * Makefile: use twine to upload to pypi.python.org diff --git a/setup.py b/setup.py index 777462f3..3795389c 100755 --- a/setup.py +++ b/setup.py @@ -70,7 +70,7 @@ platform_include_dirs = ['/usr/include/PCSC', '/usr/local/include/PCSC'] -VERSION_INFO = (1, 9, 9, 0) +VERSION_INFO = (2, 0, 0, 0) VERSION_STR = '%i.%i.%i' % VERSION_INFO[:3] VERSION_ALT = '%i,%01i,%01i,%04i' % VERSION_INFO diff --git a/smartcard/doc/conf.py b/smartcard/doc/conf.py index 19a6dbd6..101bf17b 100644 --- a/smartcard/doc/conf.py +++ b/smartcard/doc/conf.py @@ -50,9 +50,9 @@ # built documents. # # The short X.Y version. -version = '1.9.9' +version = '2.0.0' # The full version, including alpha/beta/rc tags. -release = '1.9.9' +release = '2.0.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages.