diff --git a/README b/README index 407beb9..b35a975 100644 --- a/README +++ b/README @@ -100,8 +100,8 @@ testValue 0 REFERENCES ========== [1] http://epics-pvdata.sourceforge.net -[2] http://sourceforge.net/p/epics-pvdata/pvAccessCPP/ci/default/tree/ -[3] http://sourceforge.net/p/epics-pvdata/pvAccessJava/ci/default/tree/ -[4] http://sourceforge.net/p/epics-pvdata/pvDataCPP/ci/default/tree/ -[5] http://sourceforge.net/p/epics-pvdata/pvCommonCPP/ci/default/tree/ +[2] https://github.com/epics-base/pvAccessCPP +[3] https://github.com/epics-base/pvAccessJava +[4] https://github.com/epics-base/pvDataCPP +[5] https://github.com/epics-base/pvCommonCPP diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md new file mode 100644 index 0000000..d1252c7 --- /dev/null +++ b/RELEASE_NOTES.md @@ -0,0 +1,17 @@ +Release 4.1.2 +========== + +* Improved Jenkins build support +* Removed QtCreated IDE configuration files +* Use of getSubField<> instead of e.g. getDoubleField() +* CA support for pvget, pvput and pvinfo. +* vxWorks/RTEMS compiler warnings resolved. +* Transport shutdown improved. +* CA DBR status fix. +* Monitor queue handling improved. +* Fixed bad performance on 10Gbit or faster networks. +* Async RPC service. + +Release 4.0.5 +========== +(Starting point for release notes.) diff --git a/TODO b/TODO index 5c5ba4a..7c82d7e 100644 --- a/TODO +++ b/TODO @@ -6,6 +6,6 @@ - improve searching of channel with server address specified -- void transportUnresponsive() { not implemented (also in Java) +- void transportUnresponsive() is not implemented (also in Java) - complete authNZ (callback on right change) - request event on disconnect/destroy, etc.? diff --git a/documentation/README b/documentation/DEPLOY_INSTRUCTIONS similarity index 100% rename from documentation/README rename to documentation/DEPLOY_INSTRUCTIONS diff --git a/documentation/RELEASE_NOTES.html b/documentation/RELEASE_NOTES.html deleted file mode 100644 index ea1e263..0000000 --- a/documentation/RELEASE_NOTES.html +++ /dev/null @@ -1,11 +0,0 @@ -
The main changes since release 3.0.2 are:
-Instead of data (PVStructure) appearing in connect callback (for example channelGetConnect) -it now is present in method called by whoever delivers the data. -See pvAccessJava.html for details.
-This was the starting point for RELEASE_NOTES
\ No newline at end of file diff --git a/documentation/RELEASE_NOTES.md b/documentation/RELEASE_NOTES.md deleted file mode 100644 index 9d55014..0000000 --- a/documentation/RELEASE_NOTES.md +++ /dev/null @@ -1,18 +0,0 @@ -Release release/3.1 IN DEVELOPMENT -=========== - -The main changes since release 3.0.2 are: - -* pvAccess API is changed. - - -pvAccess API is changed. ------------- - -Instead of data (PVStructure) appearing in connect callback (for example channelGetConnect) -it now is present in method called by whoever delivers the data. -See pvAccessJava.html for details. - -Release 3.0.4 -========== -This was the starting point for RELEASE_NOTES diff --git a/documentation/TODO.html b/documentation/TODO.html deleted file mode 100644 index 1f92d0b..0000000 --- a/documentation/TODO.html +++ /dev/null @@ -1,9 +0,0 @@ -This needs to be written. -For now it just refers to pvAccessJava.html
-The C++ implementation only has method request. -The Java version has methods: destroy, waitConnect, request, sendRequest, and waitResponse.
-This markdown document is for Matej to edit.
\ No newline at end of file diff --git a/documentation/TODO.md b/documentation/TODO.md deleted file mode 100644 index 4e6ca1f..0000000 --- a/documentation/TODO.md +++ /dev/null @@ -1,13 +0,0 @@ -TODO -=========== - -pvAccessCPP.html ------------- - -This needs to be written. -For now it just refers to pvAccessJava.html - -Matej to add info --------- - -This markdown document is for Matej to edit. diff --git a/src/pva/pvaVersion.h b/src/pva/pvaVersion.h index 076668d..4b63c18 100644 --- a/src/pva/pvaVersion.h +++ b/src/pva/pvaVersion.h @@ -26,8 +26,8 @@ // TODO to be generated, etc. #define EPICS_PVA_MAJOR_VERSION 4 #define EPICS_PVA_MINOR_VERSION 1 -#define EPICS_PVA_MAINTENANCE_VERSION 0 -#define EPICS_PVA_DEVELOPMENT_FLAG 1 +#define EPICS_PVA_MAINTENANCE_VERSION 2 +#define EPICS_PVA_DEVELOPMENT_FLAG 0 namespace epics { namespace pvAccess {