]> granicus.if.org Git - check/commitdiff
Update @since tags that say 0.10.1
authorBranden Archer <b.m.archer4@gmail.com>
Tue, 13 Dec 2016 01:32:31 +0000 (20:32 -0500)
committerGitHub <noreply@github.com>
Tue, 13 Dec 2016 01:32:31 +0000 (20:32 -0500)
There is no 0.10.1 release planned, and instead the next release will be 0.11.0

src/check.h.in

index e78d6907e75e3d46be07445e4a81aa72acbe7d78..81f1ad495324769559eb42f2dd138ebae8973244 100644 (file)
@@ -1571,7 +1571,7 @@ do { \
  *
  * @note If the check fails, the remaining of the test is aborted
  *
- * @since 0.10.1
+ * @since 0.11.0
  */
 #define ck_assert_mem_eq(X, Y, L) _ck_assert_mem(X, ==, Y, L)
 /**
@@ -1584,7 +1584,7 @@ do { \
  *
  * @note If the check fails, the remaining of the test is aborted
  *
- * @since 0.10.1
+ * @since 0.11.0
  */
 #define ck_assert_mem_ne(X, Y, L) _ck_assert_mem(X, !=, Y, L)
 /**
@@ -1597,7 +1597,7 @@ do { \
  *
  * @note If the check fails, the remaining of the test is aborted
  *
- * @since 0.10.1
+ * @since 0.11.0
  */
 #define ck_assert_mem_lt(X, Y, L) _ck_assert_mem(X, <, Y, L)
 /**
@@ -1610,7 +1610,7 @@ do { \
  *
  * @note If the check fails, the remaining of the test is aborted
  *
- * @since 0.10.1
+ * @since 0.11.0
  */
 #define ck_assert_mem_le(X, Y, L) _ck_assert_mem(X, <=, Y, L)
 /**
@@ -1623,7 +1623,7 @@ do { \
  *
  * @note If the check fails, the remaining of the test is aborted
  *
- * @since 0.10.1
+ * @since 0.11.0
  */
 #define ck_assert_mem_gt(X, Y, L) _ck_assert_mem(X, >, Y, L)
 /**
@@ -1636,7 +1636,7 @@ do { \
  *
  * @note If the check fails, the remaining of the test is aborted
  *
- * @since 0.10.1
+ * @since 0.11.0
  */
 #define ck_assert_mem_ge(X, Y, L) _ck_assert_mem(X, >=, Y, L)