From 016d1154fca2f7c3ae4eca267312b2de6cf17e44 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Wed, 7 Sep 2022 10:17:07 -0500 Subject: [PATCH] Set module version number for release --- Doxyfile | 2 +- configure/CONFIG_PVDATA_VERSION | 2 +- documentation/Doxyfile | 2 +- documentation/release_notes.dox | 8 +++++++- src/json/pv/json.h | 2 +- 5 files changed, 11 insertions(+), 5 deletions(-) diff --git a/Doxyfile b/Doxyfile index 471d0e6..612395c 100644 --- a/Doxyfile +++ b/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = "PVData C++" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 8.0.4-dev +PROJECT_NUMBER = 8.0.5 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/configure/CONFIG_PVDATA_VERSION b/configure/CONFIG_PVDATA_VERSION index c274100..40ae94b 100644 --- a/configure/CONFIG_PVDATA_VERSION +++ b/configure/CONFIG_PVDATA_VERSION @@ -6,7 +6,7 @@ EPICS_PVD_MAINTENANCE_VERSION = 5 # Development flag, set to zero for release versions -EPICS_PVD_DEVELOPMENT_FLAG = 1 +EPICS_PVD_DEVELOPMENT_FLAG = 0 # Immediately after a release the MAINTENANCE_VERSION # will be incremented and the DEVELOPMENT_FLAG set to 1 diff --git a/documentation/Doxyfile b/documentation/Doxyfile index 0cc83b6..2467f17 100644 --- a/documentation/Doxyfile +++ b/documentation/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = "PVData C++" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 8.0.4 +PROJECT_NUMBER = 8.0.5 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/documentation/release_notes.dox b/documentation/release_notes.dox index 5bb895e..3444992 100644 --- a/documentation/release_notes.dox +++ b/documentation/release_notes.dox @@ -2,7 +2,13 @@ @page release_notes Release Notes -Release 8.1.0 (Feb 2021) +Release 8.0.5 (Sep 2022) +======================== + +- Compatible changes + - Internal changes to use the YAJL API for generating JSON and JSON-5 output. + +Release 8.0.4 (Feb 2021) ======================== - Incompatible changes diff --git a/src/json/pv/json.h b/src/json/pv/json.h index 3390aaf..cfd3c59 100644 --- a/src/json/pv/json.h +++ b/src/json/pv/json.h @@ -44,7 +44,7 @@ struct epicsShareClass JSONPrintOptions bool multiLine; //!< include new lines bool ignoreUnprintable;//!< ignore union/union array when encountered unsigned indent; //!< Initial indentation (# of spaces) - bool json5; //!< Output extended JSON (eg. NaN). @since UNRELEASED + bool json5; //!< Output extended JSON (eg. NaN). @since 8.1.0 JSONPrintOptions(); };