diff options
author | lloyd <[email protected]> | 2009-09-10 00:29:15 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-09-10 00:29:15 +0000 |
commit | cfbe5126db44ea0a2e8f24dbaaca2126267f78d2 (patch) | |
tree | 7252ac89c011a0c3a433f4701a0820d2ac55dff2 | |
parent | c184cd88ab53a8e2c343be0ab3a8517a964789e7 (diff) |
Update configures, readme, logfile for 1.8.7 release 2009-09-091.8.7
-rwxr-xr-x | configure.pl | 4 | ||||
-rwxr-xr-x | configure.py | 6 | ||||
-rw-r--r-- | doc/log.txt | 2 | ||||
-rw-r--r-- | readme.txt | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/configure.pl b/configure.pl index 6cf43e5e6..bd7e41a3e 100755 --- a/configure.pl +++ b/configure.pl @@ -15,9 +15,9 @@ my $MAJOR_VERSION = 1; my $MINOR_VERSION = 8; my $PATCH_VERSION = 7; -my $VERSION_SUFFIX = '-pre'; +my $VERSION_SUFFIX = ''; -my $SO_PATCH_VERSION = 7; +my $SO_PATCH_VERSION = 2; my $VERSION_STRING = "$MAJOR_VERSION.$MINOR_VERSION.$PATCH_VERSION$VERSION_SUFFIX"; my $SO_VERSION_STRING = "$MAJOR_VERSION.$MINOR_VERSION.$SO_PATCH_VERSION$VERSION_SUFFIX"; diff --git a/configure.py b/configure.py index d2fd1535f..7e7632cb5 100755 --- a/configure.py +++ b/configure.py @@ -38,8 +38,8 @@ class BuildConfigurationInformation(object): version_major = 1 version_minor = 8 version_patch = 7 - version_so_patch = 7 - version_suffix = '-pre' + version_so_patch = 2 + version_suffix = '' version_string = '%d.%d.%d%s' % ( version_major, version_minor, version_patch, version_suffix) @@ -861,7 +861,7 @@ def choose_modules_to_use(options, modules): logging.info('Skipping mod because %s - %s' % ( reason, ' '.join(disabled_mods))) - logging.info('Loading modules %s', ' '.join(sorted(to_load))) + logging.debug('Loading modules %s', ' '.join(sorted(to_load))) return [modules[mod] for mod in to_load] diff --git a/doc/log.txt b/doc/log.txt index a8627429c..3ed827f0d 100644 --- a/doc/log.txt +++ b/doc/log.txt @@ -1,5 +1,5 @@ -* 1.8.7-pre, 2009-??-?? +* 1.8.7, 2009-09-09 - Fix processing multiple messages in XTS mode - Add --no-autoload option to configure.py, for minimized builds diff --git a/readme.txt b/readme.txt index 5fc3ed517..b08da15d1 100644 --- a/readme.txt +++ b/readme.txt @@ -1,4 +1,4 @@ -Botan 1.8.7-pre 2009-??-?? +Botan 1.8.7 2009-09-09 Botan is a C++ class library for performing a wide variety of cryptographic operations. |