Skip to content

Commit 7411581

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

File tree

4 files changed

+45
-6
lines changed

4 files changed

+45
-6
lines changed

NEWS.md

+12
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

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ It has grown as part of Unify SDK project and is now maintained as an external p
88
## News
99

1010
- [NEWS.md](NEWS.md) lists important information regarding zpc "split release".
11-
- [doc/release_nodes.md](doc/release_nodes.md) release notes
11+
- [applications/zpc/release_notes.md](applications/zpc/release_notes.md)
1212

1313
## Documentation
1414

applications/zpc/release_notes.md

+29
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
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 alpha support along Silicon Labs Z-Wave firmware (7.23.x)](https://github.com/SiliconLabsSoftware/z-wave-protocol-controller/pull/11)
10+
* [Notification CC updated to support Alarm CC v1 and v2](https://github.com/SiliconLabsSoftware/z-wave-protocol-controller/commit/647aac3b)
11+
* [Notification CC support Push/Pull Mode Discovery](https://github.com/SiliconLabsSoftware/z-wave-protocol-controller/commit/e4aab0dd)
12+
and [probe](https://github.com/SiliconLabsSoftware/z-wave-protocol-controller/commit/e4aab0dd)
13+
* [Notification CC support unknown type](https://github.com/SiliconLabsSoftware/z-wave-protocol-controller/commit/96fc24de)
14+
* [Time Parameters CC support](https://github.com/SiliconLabsSoftware/z-wave-protocol-controller/commit/af84a42)
15+
* [CRC16 Encapsulation](https://github.com/SiliconLabsSoftware/z-wave-protocol-controller/commit/cb377ace)
16+
17+
### Changes (1.7.0)
18+
19+
* Standlone project, helper script to setup native reference system (used for docker, github CI etc)
20+
21+
### Fixed (1.7.0)
22+
23+
* [Improvement to prevent faulty devices to block the TX queue](https://github.com/SiliconLabsSoftware/z-wave-protocol-controller/commit/722028a7)
24+
* [Notification CC fixes to pass CTT](https://github.com/SiliconLabsSoftware/z-wave-protocol-controller/commit/ef497b17)
25+
* [OnOff: Disable unsupported UCL commands (effects)](https://github.com/SiliconLabsSoftware/z-wave-protocol-controller/commit/73ece3a7)
26+
27+
### Known issues (1.7.0)
28+
29+
* [User credentials still Experimental](https://github.com/SiliconLabsSoftware/z-wave-protocol-controller/commit/8cdbbc36)
30+
* ZPC's UnifySDK related documentation may be inconsistent.
31+
332
## [1.6.0] - Aug 2024
433

534
**BREAKING** : ZPC database version bumped from 2 to 3.

cmake/modules/FindUnifySDK.cmake

+3-5
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)