diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index da55ca0..e4c30be 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,11 +1,22 @@ CA Gateway Release Notes ======================== -## 2.1.3 (not released yet) -[View diff](https://github.com/epics-extensions/ca-gateway/compare/R2-1-2-0...master) +## 2.1.4 (not released yet) +[View diff](https://github.com/epics-extensions/ca-gateway/compare/R2-1-3-0...master) * Ehhh... +## 2.1.3 (15 Dec 2021) +[View diff](https://github.com/epics-extensions/ca-gateway/compare/R2-1-2-0...R2-1-3-0) + +* Small fixes in caPutLog support +* Fix a bug (#33) where array values were lost (except the first element) + on subscriptions after a read request for a container type +* Fix update of enum labels on active subscriptions using a container type +* Move CI from Travis-CI to GitHub Actions +* A bug that interprets doubles (written as strings) as hex numbers (#37) + is fixed when the Gateway is linked against PCAS >= 4.13.3 or Base 3.15 >= 3.15.10 + ## 2.1.2 (25 Oct 2019) [View diff](https://github.com/epics-extensions/ca-gateway/compare/R2-1-1-0...R2-1-2-0) diff --git a/src/gateVersion.h b/src/gateVersion.h index de61c83..0c32625 100644 --- a/src/gateVersion.h +++ b/src/gateVersion.h @@ -25,9 +25,9 @@ *********************************************************************-*/ #define GATEWAY_VERSION 2 -#define GATEWAY_REVISION 2 -#define GATEWAY_MODIFICATION 0 -#define GATEWAY_DEV_SNAPSHOT "-DEV" +#define GATEWAY_REVISION 1 +#define GATEWAY_MODIFICATION 3 +#define GATEWAY_DEV_SNAPSHOT "" #define stringOf(TOKEN) #TOKEN #define xstringOf(TOKEN) stringOf(TOKEN)