From 9032fa6c541eb51c47dc7971b5d82171a1274db7 Mon Sep 17 00:00:00 2001 From: lloyd Date: Tue, 3 Nov 2009 18:01:57 +0000 Subject: Update docs for 1.8.8 release 2009-11-03 --- doc/log.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/log.txt b/doc/log.txt index 9ccb286ca..97476c381 100644 --- a/doc/log.txt +++ b/doc/log.txt @@ -1,8 +1,9 @@ -* 1.8.8-dev, 2009-??-?? +* 1.8.8, 2009-11-03 - Alter Skein-512 to match the tweaked 1.2 specification - Fix use of inline asm for access to x86 bswap function - Allow building the library without AES enabled + - Add 'powerpc64' alias to ppc64 arch for Gentoo ebuild * 1.8.7, 2009-09-09 - Fix processing multiple messages in XTS mode -- cgit v1.2.3 From 2be9e2c1aeae30baf64954f8411e82ddd646a728 Mon Sep 17 00:00:00 2001 From: lloyd Date: Tue, 3 Nov 2009 18:11:55 +0000 Subject: Update for 1.9.2 release 2009-11-03 --- configure.py | 2 +- doc/log.txt | 2 +- doc/scripts/dist.sh | 10 ++-------- readme.txt | 2 +- 4 files changed, 5 insertions(+), 11 deletions(-) (limited to 'doc') diff --git a/configure.py b/configure.py index be5cf7ad2..2e0c31fe2 100755 --- a/configure.py +++ b/configure.py @@ -39,7 +39,7 @@ class BuildConfigurationInformation(object): version_minor = 9 version_patch = 2 version_so_patch = 2 - version_suffix = '-dev' + version_suffix = '' version_string = '%d.%d.%d%s' % ( version_major, version_minor, version_patch, version_suffix) diff --git a/doc/log.txt b/doc/log.txt index c2728e8db..ef14d84ec 100644 --- a/doc/log.txt +++ b/doc/log.txt @@ -1,5 +1,5 @@ -* 1.9.2-dev, ????-??-?? +* 1.9.2, 2009-11-03 - Add SIMD version of XTEA - Support both SSE2 and AltiVec SIMD for Serpent and XTEA - Optimizations for SHA-1 and SHA-2 diff --git a/doc/scripts/dist.sh b/doc/scripts/dist.sh index 2b03b1a71..152b7e89b 100755 --- a/doc/scripts/dist.sh +++ b/doc/scripts/dist.sh @@ -3,16 +3,10 @@ # This is probably only useful if run on my machine, which is not # exactly ideal -# Make that limitation explicit -if [ $(hostname -s) != 'chihiro' ]; then - echo "This script probably won't work on this machine without fixes" - exit 1 -fi - SELECTOR=h:net.randombit.botan KEY_ID=EFBADFBC -MTN_DB=$HOME/var/mtn/botan.mtn -WEB_DIR=/var/www/randombit.net/files/botan/v1.9 +MTN_DB=/storage/mtn/botan.mtn +WEB_DIR=$HOME/projects/www/files/botan/v1.9/ DIST_DIR=~/Botan-dist # You shouldn't have to change anything after this diff --git a/readme.txt b/readme.txt index 644c6a4a8..a192a1e1e 100644 --- a/readme.txt +++ b/readme.txt @@ -1,4 +1,4 @@ -Botan 1.9.2-dev, ????-??-?? +Botan 1.9.2, 2009-11-03 Botan is a C++ class library for performing a wide variety of cryptographic operations. -- cgit v1.2.3