summaryrefslogtreecommitdiff
path: root/src/cryptography/__about__.py
Commit message (Collapse)AuthorAgeFilesLines
* bump version and changelog for 2.3 release (#4356)2.3Paul Kehrer2018-07-181-1/+1
|
* open master for 2.3 (#4151)Paul Kehrer2018-03-181-1/+1
|
* 2.2 release! (#4150)2.2Paul Kehrer2018-03-181-1/+1
| | | | | | * 2.2 release! * also change versions
* start the twenty second release cycle (#3960)Paul Kehrer2017-10-111-1/+1
|
* update changelog release date and bump version for 2.1 release (#3958)2.1Paul Kehrer2017-10-111-1/+1
|
* Open master for 2.1 (#3788)Alex Gaynor2017-07-171-1/+1
|
* 2.0 version bump and changelog (#3787)2.0Paul Kehrer2017-07-171-1/+1
| | | | | | * 2.0 version bump and changelog * dates are just an illusion
* Post release tasks to open master for 2.0 (#3644)Alex Gaynor2017-05-291-1/+1
|
* 1.9 version bump and changelog (#3641)1.9Paul Kehrer2017-05-291-1/+1
|
* port 1.8.1 changelog and update master for 1.9 release cycle (#3440)Paul Kehrer2017-03-101-1/+1
|
* 1.8 version bump and changelog date (#3438)1.8Paul Kehrer2017-03-091-1/+1
|
* It is 2017, in UTC (#3342)Alex Gaynor2016-12-311-1/+1
|
* 1.8 begins (#3311)Paul Kehrer2016-12-121-1/+1
|
* 1.7 changelog date and version bump (#3310)1.7Paul Kehrer2016-12-121-1/+1
| | | | | | * 1.7 changelog date and version bump * no wait the 12th
* let's get rolling on 1.7! (#3274)Paul Kehrer2016-11-221-1/+1
|
* bump version and set changelog date for 1.6 release (#3271)1.6Paul Kehrer2016-11-211-1/+1
|
* Reopen master for 1.6 (#3112)Alex Gaynor2016-08-271-1/+1
|
* update changelog and bump version for 1.5 release (#3111)1.5Paul Kehrer2016-08-261-1/+1
|
* reopen master for work on fifteenth release (#2964)Paul Kehrer2016-06-041-1/+1
|
* changelog and version bump (#2962)1.4Paul Kehrer2016-06-041-1/+1
| | | | | | | | | | | | * changelog and version bump * typo, sigh * fine you win doc8 * it's a brand new day * add sign/verify for RSA to changelog
* Open master back up for 1.4Alex Gaynor2016-03-181-1/+1
|
* bump version and update changelogPaul Kehrer2016-03-171-1/+1
|
* bump values for development of the thirteenth releasePaul Kehrer2016-01-081-1/+1
|
* bump version and changelog for the twelfth releasePaul Kehrer2016-01-071-1/+1
|
* Bump the copyright yearAlex Gaynor2016-01-011-1/+1
|
* reopen master for development on the twelfth releasePaul Kehrer2015-10-291-1/+1
|
* bump version and update changelog for eleventh release (1.1)Paul Kehrer2015-10-291-1/+1
| | | | Add some missing changelog entries
* reopen master for eleventh releasePaul Kehrer2015-08-121-1/+1
|
* bump versions and release 1.0Paul Kehrer2015-08-121-1/+1
|
* update all 0.10 to 1.0Paul Kehrer2015-05-261-1/+1
|
* open master for tenth releasePaul Kehrer2015-05-131-1/+1
|
* 0.9 timePaul Kehrer2015-05-131-1/+1
|
* reopen tree for 0.9 development workPaul Kehrer2015-03-091-1/+1
|
* update changelog and bump version to 0.8Paul Kehrer2015-03-081-1/+1
|
* Update copyright for 2015Alex Stapleton2014-12-311-1/+1
|
* open master for eighth release developmentPaul Kehrer2014-12-171-1/+1
|
* 0.7 changelog and version bumpPaul Kehrer2014-12-171-1/+1
|
* Update the license header for every source file, as well as the documentation.Alex Gaynor2014-11-161-12/+4
| | | | Fixes #1209
* Move the cryptography package into a src/ subdirectoryDonald Stufft2014-11-131-0/+31
Due to differences in how py.test determines which module to ``import`` the test suite actually runs against the cryptography which is in the *current* directory instead of the cryptography which is installed. The problem essentially boils down to when there is a tests/__init__.py then py.test adds the current directory to the front of the sys.path, causing it to take precedence over the installed location. This means that running the tests relies on the implicit compile that CFFI does instead of testing against what people will actually be runnning, which is the module compiled by setup.py.