summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES16
-rw-r--r--FAQ2
-rw-r--r--NEWS4
-rw-r--r--README2
-rw-r--r--STATUS3
-rw-r--r--crypto/opensslv.h6
6 files changed, 19 insertions, 14 deletions
diff --git a/CHANGES b/CHANGES
index a3a713a7a..512b11537 100644
--- a/CHANGES
+++ b/CHANGES
@@ -2,14 +2,14 @@
OpenSSL CHANGES
_______________
- Changes between 0.9.8f and 0.9.8g [xx XXX xxxx]
-
- *) Implement certificate status request TLS extension defined in RFC3546.
- A client can set the appropriate parameters and receive the encoded
- OCSP response via a callback. A server can query the supplied parameters
- and set the encoded OCSP response in the callback. Add simplified examples
- to s_client and s_server.
- [Steve Henson]
+ Changes between 0.9.8f and 0.9.8g [19 Oct 2007]
+
+ *) Fix various bugs:
+ + Binary incompatibility of ssl_ctx_st structure
+ + DTLS interoperation with non-compliant servers
+ + Don't call get_session_cb() without proposed session
+ + Fix ia64 assembler code
+ [Andy Polyakov, Steve Henson]
Changes between 0.9.8e and 0.9.8f [11 Oct 2007]
diff --git a/FAQ b/FAQ
index 7cd71ca0a..96d39f5cc 100644
--- a/FAQ
+++ b/FAQ
@@ -75,7 +75,7 @@ OpenSSL - Frequently Asked Questions
* Which is the current version of OpenSSL?
The current version is available from <URL: http://www.openssl.org>.
-OpenSSL 0.9.8f was released on October 11th, 2007.
+OpenSSL 0.9.8g was released on October 19th, 2007.
In addition to the current stable release, you can also access daily
snapshots of the OpenSSL development version at <URL:
diff --git a/NEWS b/NEWS
index ef9023956..40ded1aeb 100644
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,10 @@
This file gives a brief overview of the major changes between each OpenSSL
release. For more details please read the CHANGES file.
+ Major changes between OpenSSL 0.9.8f and OpenSSL 0.9.8g:
+
+ o Fixes for bugs introduced with 0.9.8f.
+
Major changes between OpenSSL 0.9.8e and OpenSSL 0.9.8f:
o Add gcc 4.2 support.
diff --git a/README b/README
index bcf719f76..2b4983560 100644
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
- OpenSSL 0.9.8g-dev
+ OpenSSL 0.9.8g
Copyright (c) 1998-2007 The OpenSSL Project
Copyright (c) 1995-1998 Eric A. Young, Tim J. Hudson
diff --git a/STATUS b/STATUS
index c8c981d76..b56355985 100644
--- a/STATUS
+++ b/STATUS
@@ -1,10 +1,11 @@
OpenSSL STATUS Last modified at
- ______________ $Date: 2007/10/11 14:58:14 $
+ ______________ $Date: 2007/10/19 08:25:14 $
DEVELOPMENT STATE
o OpenSSL 0.9.9: Under development...
+ o OpenSSL 0.9.8g: Released on October 19th, 2007
o OpenSSL 0.9.8f: Released on October 11th, 2007
o OpenSSL 0.9.8e: Released on February 23rd, 2007
o OpenSSL 0.9.8d: Released on September 28th, 2006
diff --git a/crypto/opensslv.h b/crypto/opensslv.h
index c71bcfd88..f76910a6f 100644
--- a/crypto/opensslv.h
+++ b/crypto/opensslv.h
@@ -25,11 +25,11 @@
* (Prior to 0.9.5a beta1, a different scheme was used: MMNNFFRBB for
* major minor fix final patch/beta)
*/
-#define OPENSSL_VERSION_NUMBER 0x00908071L
+#define OPENSSL_VERSION_NUMBER 0x0090807fL
#ifdef OPENSSL_FIPS
-#define OPENSSL_VERSION_TEXT "OpenSSL 0.9.8g-fips-dev xx XXX xxxx"
+#define OPENSSL_VERSION_TEXT "OpenSSL 0.9.8g-fips 19 Oct 2007"
#else
-#define OPENSSL_VERSION_TEXT "OpenSSL 0.9.8g-dev xx XXX xxxx"
+#define OPENSSL_VERSION_TEXT "OpenSSL 0.9.8g 19 Oct 2007"
#endif
#define OPENSSL_VERSION_PTEXT " part of " OPENSSL_VERSION_TEXT