Commit ee6d4b2c48002d2f25ba16c76ec4a22a127339ae

humphreyj 2018-08-21T04:29:41

Set all source files to version 1.00.

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.