Skip to content

Commit

Permalink
0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mdavidsaver committed Jan 15, 2021
1 parent e09ffec commit 12b310c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions documentation/releasenotes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
Release Notes
=============

0.1.1 (UNRELEASED)
------------------
0.1.1 (Jan 2021)
----------------

* Bug Fixes

Expand Down
6 changes: 3 additions & 3 deletions src/pvxs/unittest.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class PVXS_API testCase
}

//! Override current pass/fail result if input matches a regular expression
//! @since UNRELEASED
//! @since 0.1.1
testCase& setPassMatch(const std::string& expr, const std::string& inp);

//! Append to message
Expand Down Expand Up @@ -222,7 +222,7 @@ testCase testThrows(FN fn)
* })<<"some message";
* @endcode
*
* @since UNRELEASED
* @since 0.1.1
*/
template<class Exception, typename FN>
testCase testThrowsMatch(const std::string& expr, FN fn)
Expand Down Expand Up @@ -267,7 +267,7 @@ testCase testThrowsMatch(const std::string& expr, FN fn)

//! Macro which asserts that STR matches the regular expression EXPR
//! Evaluates to a pvxs::testCase
//! @since UNRELEASED
//! @since 0.1.1
#define testStrMatch(EXPR, STR) ::pvxs::detail::_testStrMatch(#EXPR, EXPR, #STR, STR)

//! Macro which asserts equality between LHS and RHS.
Expand Down
6 changes: 3 additions & 3 deletions src/pvxs/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
#define PVXS_VERSION VERSION_INT(PVXS_MAJOR_VERSION, PVXS_MINOR_VERSION, PVXS_MAINTENANCE_VERSION, 0)

//! Current library ABI version
//! @since UNRELEASED
//! @since 0.1.1
#define PVXS_ABI_VERSION VERSION_INT(PVXS_MAJOR_VERSION, PVXS_MINOR_VERSION, 0, 0)

#ifdef __GNUC__
Expand All @@ -64,7 +64,7 @@ PVXS_API
unsigned long version_int();

//! @returns PVXS_ABI_VERSION captured at library compile time
//! @since UNRELEASED
//! @since 0.1.1
PVXS_API
unsigned long version_abi_int();

Expand All @@ -78,7 +78,7 @@ unsigned long version_abi_int();
* @returns true if the header and library ABI versions match,
* and if the header version is not newer than the library version.
*
* @since UNRELEASED
* @since 0.1.1
*/
static inline
bool version_abi_check() {
Expand Down

0 comments on commit 12b310c

Please sign in to comment.