Set all source files to version 1.00.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
diff --git a/Makefile b/Makefile
index f9547bb..c9bb626 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@
## @file
## @brief SMTP Developer Makefile.
## @author James Humphrey (mail@somnisoft.com)
-## @version 0.99
+## @version 1.00
##
## This Makefile used internally to build and test the SMTP client library.
## Do not use this Makefile for building the library into your application.
diff --git a/src/SMTPMail.cpp b/src/SMTPMail.cpp
index c07da36..5c628f0 100644
--- a/src/SMTPMail.cpp
+++ b/src/SMTPMail.cpp
@@ -2,7 +2,7 @@
* @file
* @brief SMTPMail class wrapper for smtp-client library.
* @author James Humphrey (mail@somnisoft.com)
- * @version 0.99
+ * @version 1.00
*
* Thin CPP wrapper class around the smtp-client C library.
*
diff --git a/src/SMTPMail.h b/src/SMTPMail.h
index e9442f2..c951ba3 100644
--- a/src/SMTPMail.h
+++ b/src/SMTPMail.h
@@ -2,7 +2,7 @@
* @file
* @brief SMTPMail class wrapper for smtp-client library.
* @author James Humphrey (mail@somnisoft.com)
- * @version 0.99
+ * @version 1.00
*
* Thin CPP wrapper class around the smtp-client C library.
*
diff --git a/src/mailx.c b/src/mailx.c
index 1a33d7d..56dea59 100644
--- a/src/mailx.c
+++ b/src/mailx.c
@@ -2,7 +2,7 @@
* @file
* @brief POSIX mailx utility.
* @author James Humphrey (mail@somnisoft.com)
- * @version 0.99
+ * @version 1.00
*
* Implementation of POSIX mailx utility in send mode.
*
diff --git a/src/smtp.c b/src/smtp.c
index e176290..5120eb0 100644
--- a/src/smtp.c
+++ b/src/smtp.c
@@ -2,7 +2,7 @@
* @file
* @brief SMTP client library.
* @author James Humphrey (mail@somnisoft.com)
- * @version 0.99
+ * @version 1.00
*
* This SMTP client library allows the user to send emails to an SMTP server.
* The user can include custom headers and MIME attachments.
diff --git a/src/smtp.h b/src/smtp.h
index a5736ca..9db9446 100644
--- a/src/smtp.h
+++ b/src/smtp.h
@@ -2,7 +2,7 @@
* @file
* @brief SMTP client library.
* @author James Humphrey (mail@somnisoft.com)
- * @version 0.99
+ * @version 1.00
*
* This SMTP client library allows the user to send emails to an SMTP server.
* The user can include custom headers and MIME attachments.
diff --git a/test/seams.c b/test/seams.c
index 290a8d8..96a4536 100644
--- a/test/seams.c
+++ b/test/seams.c
@@ -2,7 +2,7 @@
* @file
* @brief Test seams for the smtp-client library.
* @author James Humphrey (mail@somnisoft.com)
- * @version 0.99
+ * @version 1.00
*
* Used by the smtp-client testing framework to inject specific return values
* by some standard library functions. This makes it possible to test less
diff --git a/test/seams.h b/test/seams.h
index 2a48775..33cc270 100644
--- a/test/seams.h
+++ b/test/seams.h
@@ -2,7 +2,7 @@
* @file
* @brief Test seams for the smtp-client library.
* @author James Humphrey (mail@somnisoft.com)
- * @version 0.99
+ * @version 1.00
*
* Used by the smtp-client testing framework to inject specific return values
* by some standard library functions. This makes it possible to test less
diff --git a/test/test.c b/test/test.c
index 6b10c16..82fbc14 100644
--- a/test/test.c
+++ b/test/test.c
@@ -2,7 +2,7 @@
* @file
* @brief Test the smtp-client library.
* @author James Humphrey (mail@somnisoft.com)
- * @version 0.99
+ * @version 1.00
*
* This smtp-client testing framework has 100% branch coverage on POSIX
* systems. It requires a Postfix SMTP server that supports all of the
diff --git a/test/test.h b/test/test.h
index e6b4a0e..c6ddddd 100644
--- a/test/test.h
+++ b/test/test.h
@@ -2,7 +2,7 @@
* @file
* @brief Test the smtp-client library.
* @author James Humphrey (mail@somnisoft.com)
- * @version 0.99
+ * @version 1.00
*
* This smtp-client testing framework has 100% branch coverage on POSIX
* systems. It requires a Postfix SMTP server that supports all of the
diff --git a/test/test_cpp_wrapper.cpp b/test/test_cpp_wrapper.cpp
index f64e007..f53fe17 100644
--- a/test/test_cpp_wrapper.cpp
+++ b/test/test_cpp_wrapper.cpp
@@ -2,7 +2,7 @@
* @file
* @brief Test the smtp-client CPP wrapper.
* @author James Humphrey (mail@somnisoft.com)
- * @version 0.99
+ * @version 1.00
*
* Example program demonstrating how to use the CPP wrapper class.
*
diff --git a/test/test_nossl.c b/test/test_nossl.c
index 8e29de6..da2cf8a 100644
--- a/test/test_nossl.c
+++ b/test/test_nossl.c
@@ -2,7 +2,7 @@
* @file
* @brief Test the smtp-client library without OpenSSL.
* @author James Humphrey (mail@somnisoft.com)
- * @version 0.99
+ * @version 1.00
*
* These functional tests ensure that the smtp-client library works when
* configured without OpenSSL.