File tree Expand file tree Collapse file tree 3 files changed +39
-5
lines changed Expand file tree Collapse file tree 3 files changed +39
-5
lines changed Original file line number Diff line number Diff line change @@ -5,12 +5,24 @@ All notable changes to this project will be documented in this file.
55** Full Changelog** :
66https://github.com/SiliconLabsSoftware/z-wave-protocol-controller/commits
77
8+ ## ver_1.7.0
9+
10+ ** Full Changelog** :
11+ https://github.com/SiliconLabsSoftware/z-wave-protocol-controller/commits/ver_1.7.0
12+
13+ Refer to documentation for release highlights:
14+
15+ - [ applications/zpc/release_notes.md] ( applications/zpc/release_notes.md )
16+
17+
818## ver_1.6.1-RC0
919
1020Integrate internal changes progressively:
1121
22+ ```
1223applications/zpc: uic#ver_1.7.0-unstable-84-gcb000bc912
1324applications/zpc/components/zwave/zwave_transports/s2/libs/zw-libs2: zw-libs2#zwave-sdk-7.21.0-ga-65-g3b7dcd7
25+ ```
1426
1527## ver_1.6.0-RC4
1628
Original file line number Diff line number Diff line change 11# ZPC Release Notes
22
3+ ## [ 1.7.0] - Feb 2025
4+
5+ ** BREAKING** : ZPC has been relocated outside of UnifySDK and is now dependent on it.
6+
7+ ### Added (1.7.0)
8+
9+ * Z-Wave S2v2 related changes (not yet supported with public firmwares)
10+ * Added unknown type support to Notification CC
11+
12+ ### Changes (1.7.0)
13+
14+ * User credentials Experimental support
15+
16+ ### Fixed (1.7.0)
17+
18+ * Updated Notification CC to support Alarm CC v1 and v2
19+ * Time Parameters CC
20+ * Add failsafe to tx queue so it doesn't get blocked
21+ * Notification CC fixes to pass CTT
22+
23+ ### Known issues (1.7.0)
24+
25+ * ZPC's UnifySDK related documentation may be inconsistent.
26+
327## [ 1.6.0] - Aug 2024
428
529** BREAKING** : ZPC database version bumped from 2 to 3.
Original file line number Diff line number Diff line change @@ -21,17 +21,15 @@ endif()
2121if (NOT DEFINED UNIFYSDK_GIT_TAG)
2222 if (DEFINED ENV{UNIFYSDK_GIT_TAG})
2323 set (UNIFYSDK_GIT_TAG $ENV{UNIFYSDK_GIT_TAG} )
24+ else ()
25+ set (UNIFYSDK_GIT_TAG "ver_1.7.0" )
2426 endif ()
2527endif ()
2628if ("${UNIFYSDK_GIT_TAG} " STREQUAL "" )
2729 set (UNIFYSDK_GIT_TAG "main" ) # Override CMake default ("master")
2830endif ()
2931
30- if (${GIT_EXECUTABLE} )
31- else ()
32- set (GIT_EXECUTABLE git)
33- endif ()
34-
32+ find_package (Git)
3533FetchContent_Declare(
3634 UnifySDK
3735 GIT_REPOSITORY ${UNIFYSDK_GIT_REPOSITORY}
You can’t perform that action at this time.
0 commit comments