aboutsummaryrefslogtreecommitdiffstats
path: root/botan_version.py
Commit message (Collapse)AuthorAgeFilesLines
* Bump versionlloyd2014-01-011-1/+1
|
* Enable all the GCC warning flags, as we now require at least GCC 4.7 anywaylloyd2013-11-161-1/+1
| | | | Fix a few nullptr and cast warnings.
* Update build version to 1.11.5 prelloyd2013-08-191-1/+1
|
* Tick version to 1.10.4lloyd2013-04-121-1/+1
|
* Update for 1.11.3 release1.11.3lloyd2013-04-111-1/+1
|
* Tick to 1.11.3 prelloyd2013-03-041-1/+1
|
* Set the release type (unreleased, released, snapshot) inlloyd2013-03-041-0/+1
| | | | | botan_version.py via the release script, and propagate it to version.cpp via build.h
* Bump for 1.11.2lloyd2012-10-301-1/+1
|
* Have the release script pull the datestamp from monotone, so it doeslloyd2012-07-251-4/+4
| | | | not need to be manually set before a release.
* Update for 1.11.0 release1.11.0lloyd2012-07-191-1/+1
|
* Set version to 1.11.0lloyd2012-05-261-2/+2
|
* propagate from branch 'net.randombit.botan' (head ↵lloyd2011-10-061-1/+1
|\ | | | | | | | | | | 29dfb73a5efec220ebafcb9c1d7a32bb9d63461c) to branch 'net.randombit.botan.cxx11' (head a842d86b2b9593318fbce5868c3d1278f8b3a037)
| * propagate from branch 'net.randombit.botan' (head ↵lloyd2011-07-121-1/+1
| |\ | | | | | | | | | | | | | | | 23a326fa36a31dd39347a8864e1f5740669a905e) to branch 'net.randombit.botan.cxx11' (head 9d3ac8dd45f7673c85dca41968e7750acc90bdff)
| | * Add string_join; inverse of split_on.lloyd2011-06-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | Use auto in a few more places. Use GCC 4.6's range-for Delete rather than hide Algorithm copy constructor/assignment Move version to more or less randomly chosen 1.99 so there is no ambiguity about versions.
* | | Note --cpu fix, bump versionlloyd2011-09-011-2/+2
|/ /
* | 1.10.1 release1.10.1lloyd2011-07-111-1/+1
| |
* | Allow overriding the VC revision in botan_version.py (for releases)lloyd2011-07-111-0/+1
| |
* | Tick to 1.10.1 unreleased.lloyd2011-06-301-2/+2
| | | | | | | | | | Try to detect the mtn revision (by shelling out to mtn automate), and including it in build.h as BOTAN_VERSION_VC_REVISION.
* | Tick version to 1.10.0 release1.10.0lloyd2011-06-201-1/+1
|/
* Tick version to 1.10.0lloyd2011-06-031-3/+3
|
* Tick to 1.9.18 release1.9.18lloyd2011-06-031-1/+1
|
* Modify soname to match Unix conventions at suggestion of Debianlloyd2011-05-121-2/+4
| | | | | | | | | | maintainer. Namespace the headers in /usr/local/include/botan-1.9/botan, so multiple versions can be installed in parallel. Down version to 1.9.18 since there are a good number of changes in this release already.
* Calling &str[str.size()] is only valid if str is const; otherwise thelloyd2011-04-291-3/+3
| | | | | | | | | | | | | | results are undefined. This happens to work under GCC and most other compilers, but does not under Visual C++ 2010. This broke hex_encode when encoding an empty input, and this subsequently broke SSL handshaking. 2010 includes a TR1 that works fine for SSL, but it puts the headers in the main header space rather than under tr1/, so account for that. Hack the socket header into working under WinSock Tick version to 1.10.0
* Tick to 1.9.17 release1.9.17lloyd2011-04-291-1/+1
|
* Rename all references of ia32 to x86-32 and amd64 to x86-64.lloyd2011-04-221-2/+2
| | | | | | Back the reported version from 1.10.0 to 1.9.17 for the time being. Still on the fence if this will be 1.10.0 or another release candidate instead.
* Tick version numbers to 1.10.0lloyd2011-04-141-3/+3
| | | | | | | | | | | | | | More documentation updates. The clean target wasn't removing one of the symlinks. In the self-test application, warn if the version we are linked against does not match the version we were built against. This always indicates a problem. Someone who had an older version installed on their system got very confused when the test app was linked against it at runtime; this warning would have saved a couple hours of puzzling by me. This would also have helped avoid the nasty bug in 1.8.3
* I think this fixes the soname stufflloyd2011-04-111-6/+4
|
* Convert most of the documentation to reStructured Text, addinglloyd2011-04-041-0/+8
a makefile to build it with Sphinx (http://sphinx.pocoo.org/). Previously credits.txt listed public domain code sources; instead directly credit the authors in the relevant files and delete that file. Drop the draft FIPS 140 security policy; I can't imagine FIPS 140 validation will ever happen, and if it does, I don't want anything to do with it. Also drop the internals doc, which was so out of date (and incomplete) as to be worthless. Move the tutorials and InSiTo pdfs into old/ for the time being, until anything relevant from them can be filtered out and converted into RST.