Skip to content

Commit 2fab724

Browse files
committed
SWPROT-8953: Release 1.7.0
Origin: #35 Signed-off-by: Philippe Coval <philippe.coval@silabs.com>
1 parent 438f135 commit 2fab724

File tree

3 files changed

+39
-5
lines changed

3 files changed

+39
-5
lines changed

NEWS.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,24 @@ All notable changes to this project will be documented in this file.
55
**Full Changelog**:
66
https://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

1020
Integrate internal changes progressively:
1121

22+
```
1223
applications/zpc: uic#ver_1.7.0-unstable-84-gcb000bc912
1324
applications/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

applications/zpc/release_notes.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
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.

cmake/modules/FindUnifySDK.cmake

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,15 @@ endif()
2121
if(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()
2527
endif()
2628
if("${UNIFYSDK_GIT_TAG}" STREQUAL "")
2729
set(UNIFYSDK_GIT_TAG "main") # Override CMake default ("master")
2830
endif()
2931

30-
if(${GIT_EXECUTABLE})
31-
else()
32-
set(GIT_EXECUTABLE git)
33-
endif()
34-
32+
find_package(Git)
3533
FetchContent_Declare(
3634
UnifySDK
3735
GIT_REPOSITORY ${UNIFYSDK_GIT_REPOSITORY}

0 commit comments

Comments
 (0)