diff --git a/modules/database/src/std/rec/biRecord.dbd.pod b/modules/database/src/std/rec/biRecord.dbd.pod index 157c33fe6..c62b291ad 100644 --- a/modules/database/src/std/rec/biRecord.dbd.pod +++ b/modules/database/src/std/rec/biRecord.dbd.pod @@ -61,8 +61,8 @@ this chapter for information on soft device support. If the record gets its values from hardware or uses the C device support, the device support routines place the value in the RVAL field. -(Since UNRELEASED) If the MASK field is non-zero, then this MASK is applied to RVAL. -The value of RVAL is then converted using the process described in the +(Since 7.0.8) If the MASK field is non-zero, then this MASK is applied to RVAL. +The value from RVAL is then converted using the process described in the next section. =fields INP, DTYP, ZNAM, ONAM, RVAL, VAL diff --git a/modules/database/src/std/rec/calcRecord.dbd.pod b/modules/database/src/std/rec/calcRecord.dbd.pod index 23893feeb..4619dd4e3 100644 --- a/modules/database/src/std/rec/calcRecord.dbd.pod +++ b/modules/database/src/std/rec/calcRecord.dbd.pod @@ -158,7 +158,7 @@ CEIL: Ceiling (unary) FLOOR: Floor (unary) =item * -FMOD: Floating point modulo (binary) Added in UNRELEASED +FMOD: Floating point modulo (binary) Added in 7.0.8 =item * LOG: Log base 10 (unary) diff --git a/modules/database/src/std/rec/calcoutRecord.dbd.pod b/modules/database/src/std/rec/calcoutRecord.dbd.pod index b62f57520..490aec9c9 100644 --- a/modules/database/src/std/rec/calcoutRecord.dbd.pod +++ b/modules/database/src/std/rec/calcoutRecord.dbd.pod @@ -184,7 +184,7 @@ CEIL: Ceiling (unary) FLOOR: Floor (unary) =item * -FMOD: Floating point modulo (binary) Added in UNRELEASED +FMOD: Floating point modulo (binary) Added in 7.0.8 =item * LOG: Log base 10 (unary) diff --git a/modules/database/src/std/rec/longoutRecord.dbd.pod b/modules/database/src/std/rec/longoutRecord.dbd.pod index 912573749..9fead68d4 100644 --- a/modules/database/src/std/rec/longoutRecord.dbd.pod +++ b/modules/database/src/std/rec/longoutRecord.dbd.pod @@ -85,7 +85,7 @@ for information on the format of hardware addresses and database links. =head4 Menu longoutOOPT -The OOPT field was added in EPICS UNRELEASED. +The OOPT field was added in EPICS 7.0.8. It determines the condition that causes the output link to be written to. It's a menu field that has six choices: @@ -119,7 +119,7 @@ VAL is non-zero and last value was zero. =head4 Changes in OUT field when OOPT = On Change -The OOCH field was added in EPICS UNRELEASED. +The OOCH field was added in EPICS 7.0.8. If OOCH is C (its default value) and the OOPT field is C, the record will write to the device support the first time the record gets diff --git a/modules/libcom/src/calc/postfix.h b/modules/libcom/src/calc/postfix.h index c9fdc1ee7..5d75a7ddf 100644 --- a/modules/libcom/src/calc/postfix.h +++ b/modules/libcom/src/calc/postfix.h @@ -222,7 +222,7 @@ extern "C" { * - n parameter minimum value: min(a, b, ...) * - Square root: sqr(a) or sqrt(a) * - Floating point modulo: fmod(num, den) - * \since The fmod() function was added in UNRELEASED + * \since The fmod() function was added in 7.0.8 * * -# ***Trigonometric Functions*** * Standard circular trigonometric functions, with angles expressed in radians: diff --git a/modules/libcom/src/error/errlog.h b/modules/libcom/src/error/errlog.h index 4aaf054ac..44a504812 100644 --- a/modules/libcom/src/error/errlog.h +++ b/modules/libcom/src/error/errlog.h @@ -180,8 +180,8 @@ LIBCOM_API void errlogAddListener(errlogListener listener, void *pPrivate); * \param listener Function pointer of type ::errlogListener * \param pPrivate This will be passed as the first argument of listener() * - * \since UNRELEASED Safe to call from a listener callback. - * \until UNRELEASED Self-removal from a listener callback caused corruption. + * \since 7.0.8 Safe to call from a listener callback. + * \until 7.0.8 Self-removal from a listener callback caused corruption. */ LIBCOM_API int errlogRemoveListeners(errlogListener listener, void *pPrivate); diff --git a/modules/libcom/src/iocsh/initHooks.h b/modules/libcom/src/iocsh/initHooks.h index a5ad93d3f..573817f6b 100644 --- a/modules/libcom/src/iocsh/initHooks.h +++ b/modules/libcom/src/iocsh/initHooks.h @@ -111,7 +111,7 @@ typedef enum { */ initHookAfterCloseLinks, /** \brief Scan tasks stopped. - * \since UNRELEASED Triggered during normal IOC shutdown + * \since 7.0.8 Triggered during normal IOC shutdown * \since 7.0.3.1 Added, triggered only by unittest code. */ initHookAfterStopScan, @@ -120,7 +120,7 @@ typedef enum { */ initHookAfterStopCallback, /** \brief CA links stopped. - * \since UNRELEASED Triggered during normal IOC shutdown + * \since 7.0.8 Triggered during normal IOC shutdown * \since 7.0.3.1 Added, triggered only by unittest code. */ initHookAfterStopLinks, @@ -136,12 +136,12 @@ typedef enum { /** \brief Called during testdbPrepare() * Use this hook to repeat actions each time an empty test database is initialized. - * \since UNRELEASED Added, triggered only by unittest code. + * \since 7.0.8 Added, triggered only by unittest code. */ initHookAfterPrepareDatabase, /** \brief Called during testdbCleanup() * Use this hook to perform cleanup each time before a test database is free()'d. - * \since UNRELEASED Added, triggered only by unittest code. + * \since 7.0.8 Added, triggered only by unittest code. */ initHookBeforeCleanupDatabase, diff --git a/modules/libcom/src/iocsh/iocsh.h b/modules/libcom/src/iocsh/iocsh.h index 2c8da0998..90a534581 100644 --- a/modules/libcom/src/iocsh/iocsh.h +++ b/modules/libcom/src/iocsh/iocsh.h @@ -66,12 +66,16 @@ typedef enum { iocshArgPdbbase, iocshArgArgv, iocshArgPersistentString, - /** Equivalent to iocshArgString with a hint for tab completion as a record name. - * @since UNRELEASED + /** + * Equivalent to iocshArgString with a hint for tab completion that the + * argument is a record name. + * @since 7.0.8 */ iocshArgStringRecord, - /** Equivalent to iocshArgString with a hint for tab completion as a file system path. - * @since UNRELEASED + /** + * Equivalent to iocshArgString with a hint for tab completion that the + * argument is a file system path. + * @since 7.0.8 */ iocshArgStringPath, }iocshArgType;