diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/download.txt | 5 | ||||
-rw-r--r-- | doc/log.txt | 13 |
2 files changed, 16 insertions, 2 deletions
diff --git a/doc/download.txt b/doc/download.txt index 4e8ccd156..b8d3e75b3 100644 --- a/doc/download.txt +++ b/doc/download.txt @@ -68,8 +68,9 @@ Botan's development occurs using a distributed version control system called `Monotone <http://www.monotone.ca>`_. The main branch of development occurs on the branch named -``net.randombit.botan``; this is probably the branch you want. To -download that branch and set up a new workspace, run:: +``net.randombit.botan``; this is probably the branch you want (for +1.8, use ``net.randombit.botan.1_8`` instead). To download that branch +and set up a new workspace, run:: $ mtn db init --db=botan.mtn $ mtn pull --db=botan.mtn randombit.net 'net.randombit.botan' diff --git a/doc/log.txt b/doc/log.txt index 4c4215067..696fa4ac9 100644 --- a/doc/log.txt +++ b/doc/log.txt @@ -10,6 +10,19 @@ Series 1.10 Version 1.10.2, Not Yet Released ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +* The exception catching syntax of configure.py has been changed to + the Python 3.x syntax. This syntax also works with Python 2.6 and + 2.7, but not with any earlier Python 2 release. A simple search and + replace will allow running it under Python 2.5:: + perl -pi -e 's/except (.*) as (.*):/except $1, $2:/g' configure.py + +* Add AltiVec detection for IBM POWER7 processors. + +* Don't set a soname on OpenBSD, as it doesn't support it (PR 158) + +* Fix a configure.py incompatability with the subprocess module + included in Python 3.1 (PR 157) + * A bug in configure.py would cause it to interpret `--cpu=s390x` as `s390`. This may have affected other CPUs as well. Now configure.py searches for an exact match, and only if no exact match is found |