diff --git a/modules/database/src/ioc/db/dbChannel.h b/modules/database/src/ioc/db/dbChannel.h index b2b2af6a5..74c2a445b 100644 --- a/modules/database/src/ioc/db/dbChannel.h +++ b/modules/database/src/ioc/db/dbChannel.h @@ -512,7 +512,7 @@ DBCORE_API long dbChannelGet(dbChannel *chan, short type, * \param[in] pfl Pointer to a db_field_log or NULL. * \returns 0, or an error status value. * - * \since UNRELEASED If pfl is NULL and chan has filters, db_create_read_log() will be called + * \since 7.0.10 If pfl is NULL and chan has filters, db_create_read_log() will be called * internally to create a temporary db_field_log which is passed to dbChannelGet() * then deallocated. */ diff --git a/modules/database/src/ioc/db/dbServer.h b/modules/database/src/ioc/db/dbServer.h index 2083a705a..bef5a10ee 100644 --- a/modules/database/src/ioc/db/dbServer.h +++ b/modules/database/src/ioc/db/dbServer.h @@ -143,7 +143,7 @@ DBCORE_API void dbsr(unsigned level); DBCORE_API int dbServerClient(char *pBuf, size_t bufSize); /** @brief CPP Macro indicating the dbServerStats() routine exists. - * @since UNRELEASED + * @since 7.0.10 */ #define HAS_DBSERVER_STATS @@ -161,7 +161,7 @@ DBCORE_API int dbServerClient(char *pBuf, size_t bufSize); * variables and returns the number of dbServer::stats() methods called, * 0 if a named server wasn't found or doesn't have a stats() method. * - * @since UNRELEASED + * @since 7.0.10 */ DBCORE_API int dbServerStats(const char *name, unsigned *channels, unsigned *clients); diff --git a/modules/database/src/ioc/db/dbUnitTest.h b/modules/database/src/ioc/db/dbUnitTest.h index 51c2b522e..9f5fdae21 100644 --- a/modules/database/src/ioc/db/dbUnitTest.h +++ b/modules/database/src/ioc/db/dbUnitTest.h @@ -167,7 +167,7 @@ DBCORE_API void testMonitorWait(testMonitor*); * * On return, any updates previously posted for this subscriptions have been delivered. * - * @since UNRELEASED + * @since 7.0.10 */ DBCORE_API void testMonitorSync(testMonitor*); /** Return the number of monitor events which have occurred since create, diff --git a/modules/database/src/std/link/links.dbd.pod b/modules/database/src/std/link/links.dbd.pod index c1b61a320..f32c184b2 100644 --- a/modules/database/src/std/link/links.dbd.pod +++ b/modules/database/src/std/link/links.dbd.pod @@ -86,7 +86,7 @@ input links, and returns a double-precision floating-point result. The expression is evaluated by the EPICS Calc engine, and the result is returned as the value of the link. -Since UNRELEASED the number of inputs has been increased from 12 to 21. +Since 7.0.10 the number of inputs has been increased from 12 to 21. Two additional expressions may also be provided and are evaluated to determine whether the record owning the link should be placed in alarm state. In both diff --git a/modules/database/src/std/rec/calcRecord.dbd.pod b/modules/database/src/std/rec/calcRecord.dbd.pod index 5bbfb6641..886345b65 100644 --- a/modules/database/src/std/rec/calcRecord.dbd.pod +++ b/modules/database/src/std/rec/calcRecord.dbd.pod @@ -14,7 +14,7 @@ and logical operations on values retrieved from other records. The result of its operations can then be accessed by another record so that it can then be used. -Since UNRELEASED the number of inputs has been increased from 12 to 21. +Since 7.0.10 the number of inputs has been increased from 12 to 21. =head2 Parameter Fields diff --git a/modules/database/src/std/rec/calcoutRecord.dbd.pod b/modules/database/src/std/rec/calcoutRecord.dbd.pod index 368ecc854..9e75a66b3 100644 --- a/modules/database/src/std/rec/calcoutRecord.dbd.pod +++ b/modules/database/src/std/rec/calcoutRecord.dbd.pod @@ -20,7 +20,7 @@ rather than the DBF_STRING fields used in the Wait record. For new databases, it is recommended that the Calcout record be used instead of the Wait record. -Since UNRELEASED the number of inputs has been increased from 12 to 21. +Since 7.0.10 the number of inputs has been increased from 12 to 21. =head2 Parameter Fields diff --git a/modules/database/src/std/rec/dfanoutRecord.dbd.pod b/modules/database/src/std/rec/dfanoutRecord.dbd.pod index 7afcf0a06..a25d4624e 100644 --- a/modules/database/src/std/rec/dfanoutRecord.dbd.pod +++ b/modules/database/src/std/rec/dfanoutRecord.dbd.pod @@ -14,7 +14,7 @@ The Data Fanout or "dfanout" record is used to forward data to up to capability to forward data has been added to it. It has no associated device support. -Since UNRELEASED the number of output links has been increased +Since 7.0.10 the number of output links has been increased from 8 to 16 and IVOA and IVOV fields have been added. =head2 Parameter Fields diff --git a/modules/database/src/std/rec/subRecord.dbd.pod b/modules/database/src/std/rec/subRecord.dbd.pod index 42545ca3f..46ebcd79e 100644 --- a/modules/database/src/std/rec/subRecord.dbd.pod +++ b/modules/database/src/std/rec/subRecord.dbd.pod @@ -12,7 +12,7 @@ The subroutine record is used to call a C initialization routine and a recurring scan routine. There is no device support for this record. -Since UNRELEASED the number of inputs has been increased from 12 to 21. +Since 7.0.10 the number of inputs has been increased from 12 to 21. =recordtype sub diff --git a/modules/libcom/src/calc/postfix.h b/modules/libcom/src/calc/postfix.h index 4e568f5ac..18f3ac738 100644 --- a/modules/libcom/src/calc/postfix.h +++ b/modules/libcom/src/calc/postfix.h @@ -24,7 +24,7 @@ /** \brief Number of input arguments to a calc expression (A-U) * - * Since UNRELEASED the number of inputs has been increased from 12 to 21. + * Since 7.0.10 the number of inputs has been increased from 12 to 21. */ #define CALCPERFORM_NARGS 21 /** \brief Size of the internal partial result stack */ diff --git a/modules/libcom/src/iocsh/initHooks.h b/modules/libcom/src/iocsh/initHooks.h index bfe8caf5b..1373ca771 100644 --- a/modules/libcom/src/iocsh/initHooks.h +++ b/modules/libcom/src/iocsh/initHooks.h @@ -163,9 +163,9 @@ typedef void (*initHookFunction)(initHookState state); * * Registers \p func for initHook notifications * \param func Pointer to application's notification function. - * \return Always zero. (before UNRELEASED could return -1 on allocation failure) + * \return Always zero. (before 7.0.10 could return -1 on allocation failure) * - * \since UNRELEASED initHookRegister is idempotent. + * \since 7.0.10 initHookRegister is idempotent. * Previously, repeated registrations would result * in duplicate calls to the hook function. */