- Merged back bugfixes from trunk (pre 0.99-pre2):
    * Corrected parsing of UTCTime dates before 1990 and after 1950
    * Support more exotic OID's when parsing certificates
    * Support more exotic name representations when parsing certificates
    * Replaced the expired test certificates
    * Do not bail out if no client certificate specified. Try to negotiate anonymous connection (Fixes ticket #12)


diff --git a/include/polarssl/version.h b/include/polarssl/version.h
index 62fe36b..294258d 100644
--- a/include/polarssl/version.h
+++ b/include/polarssl/version.h
@@ -36,16 +36,16 @@
  */
 #define POLARSSL_VERSION_MAJOR  0
 #define POLARSSL_VERSION_MINOR  14
-#define POLARSSL_VERSION_PATCH  0
+#define POLARSSL_VERSION_PATCH  1
 
 /**
  * The single version number has the following structure:
  *    MMNNPP00
  *    Major version | Minor version | Patch version
  */
-#define POLARSSL_VERSION_NUMBER         0x000E0000
-#define POLARSSL_VERSION_STRING         "0.14.0"
-#define POLARSSL_VERSION_STRING_FULL    "PolarSSL 0.14.0"
+#define POLARSSL_VERSION_NUMBER         0x000E0100
+#define POLARSSL_VERSION_STRING         "0.14.1"
+#define POLARSSL_VERSION_STRING_FULL    "PolarSSL 0.14.1"
 
 #if defined(POLARSSL_VERSION_C)
 
diff --git a/include/polarssl/x509.h b/include/polarssl/x509.h
index 829adaf..2a05318 100644
--- a/include/polarssl/x509.h
+++ b/include/polarssl/x509.h
@@ -122,7 +122,7 @@
 #define OID_CN                  "\x55\x04\x03"
 #define OID_PKCS1               "\x2A\x86\x48\x86\xF7\x0D\x01\x01"
 #define OID_PKCS1_RSA           "\x2A\x86\x48\x86\xF7\x0D\x01\x01\x01"
-#define OID_PKCS1_RSA_SHA       "\x2A\x86\x48\x86\xF7\x0D\x01\x01\x05"
+#define OID_RSA_SHA_OBS         "\x2B\x0E\x03\x02\x1D"
 #define OID_PKCS9               "\x2A\x86\x48\x86\xF7\x0D\x01\x09"
 #define OID_PKCS9_EMAIL         "\x2A\x86\x48\x86\xF7\x0D\x01\x09\x01"