- update to version 1.9.6 (August 2017)
- include test/__init__.py in the archive tarball.
"make test" now works. That fixes build using Python 3.6
- fix spec file
- single spec for python 2 and python 3
- Update to version 1.9.5 (Feb 2017)
- SCardGetStatusChange(): fix a memory leak with Python 3
- SCardTransmit(): use SCARD_PCI_RAW for undefined protocol
- Improve epydoc documentation
- verison 1.9.4 (May 2016)
- Fix installation using pip and easy_install
- Avoid El Capitan SCardGetAttrib bug
- CardConnection: Add context management
- PCSCCardConnection: raise NoCardException if SCARD_E_NO_SMARTCARD
- Stop CardMonitor monitor thread after traceback print.
- minor improvements
- verison 1.9.3 (March 2016)
- Fix SCardControl() on Windows 7
- Fix installation using pip and easy_install
- verison 1.9.2 (February 2016)
- Fix toBytes regression
- Fix installation using pip
- improve pydoc documentation
- user-guide.rst: use real sample codes
- minor improvements
- verison 1.9.1 (September 2015)
- Create a new version so that the upload to Pypi does _not_
contain the swig generated files.
- Version 1.9.0 (August 2015)
- add Python3 support (Python2 is still supported)
- fix a lot of pylint warnings
- smartcard/test/* replace deprecated assert calls
- add tox support and coverage reports, run test suite on Travis
- add Travis CI support to automatically build on Unix
- add AppVeyor support to automatically build on Windows
- minor bugs fixed
- Big thank you to Alex Willmer for his work on pyscard
- Version 1.7.0 (June 2015)
- PCSCCardConnection: Fix a problem with mode=SCARD_SHARE_DIRECT
- add support of cygwin as a build platform
- Fix a problem with Windows Remote Desktop
- Switch from distutils to setuptools
- dropped support for Python 2.5 and earlier (Alex Willmer)
- dropped support for OS X 10.5 (Leopard) and earlier (Alex Willmer)
- minor bugs fixed
- move changelog to a file
*
- added support for windows 64bit amd64 (Jean-Daniel Aussel)
- support python "new" classes (derive classes from object) (Ludovic Rousseau from chrysn feature request ID 3110077)
- fixed Reader.__eq__() (Ludovic Rousseau from Bernard Paulus bug ID 3418113)
- fixed extended APDU transmit buffer too short by 2 (Jean-Daniel Aussel from bugs ID 2914636 and 3106761)
- make Card and Reader objects hashable (Jean-Daniel Aussel from Hans-Peter Jansen feature request and patch)
- convert the user guide to python-Sphinx
*
- update to 1.6.14 svn 529
*
- add docs
*
- initial version
OBS-URL: https://build.opensuse.org/request/show/546230
OBS-URL: https://build.opensuse.org/package/show/security/python-pyscard?expand=0&rev=8
78 lines
3.1 KiB
Plaintext
78 lines
3.1 KiB
Plaintext
-------------------------------------------------------------------
|
|
Mon Nov 27 12:15:09 UTC 2017 - t.gruner@katodev.de
|
|
|
|
- update to version 1.9.6 (August 2017)
|
|
- include test/__init__.py in the archive tarball.
|
|
"make test" now works. That fixes build using Python 3.6
|
|
- fix spec file
|
|
|
|
-------------------------------------------------------------------
|
|
Fri May 5 12:07:38 UTC 2017 - t.gruner@katodev.de
|
|
|
|
- single spec for python 2 and python 3
|
|
- Update to version 1.9.5 (Feb 2017)
|
|
- SCardGetStatusChange(): fix a memory leak with Python 3
|
|
- SCardTransmit(): use SCARD_PCI_RAW for undefined protocol
|
|
- Improve epydoc documentation
|
|
- verison 1.9.4 (May 2016)
|
|
- Fix installation using pip and easy_install
|
|
- Avoid El Capitan SCardGetAttrib bug
|
|
- CardConnection: Add context management
|
|
- PCSCCardConnection: raise NoCardException if SCARD_E_NO_SMARTCARD
|
|
- Stop CardMonitor monitor thread after traceback print.
|
|
- minor improvements
|
|
- verison 1.9.3 (March 2016)
|
|
- Fix SCardControl() on Windows 7
|
|
- Fix installation using pip and easy_install
|
|
- verison 1.9.2 (February 2016)
|
|
- Fix toBytes regression
|
|
- Fix installation using pip
|
|
- improve pydoc documentation
|
|
- user-guide.rst: use real sample codes
|
|
- minor improvements
|
|
- verison 1.9.1 (September 2015)
|
|
- Create a new version so that the upload to Pypi does _not_
|
|
contain the swig generated files.
|
|
|
|
-------------------------------------------------------------------
|
|
Fri Oct 16 07:38:21 UTC 2015 - t.gruner@katodev.de
|
|
|
|
- Version 1.9.0 (August 2015)
|
|
- add Python3 support (Python2 is still supported)
|
|
- fix a lot of pylint warnings
|
|
- smartcard/test/* replace deprecated assert calls
|
|
- add tox support and coverage reports, run test suite on Travis
|
|
- add Travis CI support to automatically build on Unix
|
|
- add AppVeyor support to automatically build on Windows
|
|
- minor bugs fixed
|
|
- Big thank you to Alex Willmer for his work on pyscard
|
|
- Version 1.7.0 (June 2015)
|
|
- PCSCCardConnection: Fix a problem with mode=SCARD_SHARE_DIRECT
|
|
- add support of cygwin as a build platform
|
|
- Fix a problem with Windows Remote Desktop
|
|
- Switch from distutils to setuptools
|
|
- dropped support for Python 2.5 and earlier (Alex Willmer)
|
|
- dropped support for OS X 10.5 (Leopard) and earlier (Alex Willmer)
|
|
- minor bugs fixed
|
|
|
|
-------------------------------------------------------------------
|
|
Thu Jul 16 13:54:00 UTC 2015 - t.gruner@katodev.de
|
|
|
|
- move changelog to a file
|
|
|
|
|
|
* Sun Jan 11 2014 pedro@pgalves - 1.6.16
|
|
- added support for windows 64bit amd64 (Jean-Daniel Aussel)
|
|
- support python "new" classes (derive classes from object) (Ludovic Rousseau from chrysn feature request ID 3110077)
|
|
- fixed Reader.__eq__() (Ludovic Rousseau from Bernard Paulus bug ID 3418113)
|
|
- fixed extended APDU transmit buffer too short by 2 (Jean-Daniel Aussel from bugs ID 2914636 and 3106761)
|
|
- make Card and Reader objects hashable (Jean-Daniel Aussel from Hans-Peter Jansen feature request and patch)
|
|
- convert the user guide to python-Sphinx
|
|
* Fri May 27 2011 hpj@urpla.net - 1.6.14
|
|
- update to 1.6.14 svn 529
|
|
* Wed May 25 2011 hpj@urpla.net - 1.6.12
|
|
- add docs
|
|
* Wed May 25 2011 hpj@urpla.net - 1.6.12
|
|
- initial version
|
|
|