Skip to content

Commit 1bec680

Browse files
authored
Merge pull request #110 from sorru94/prepare-0.9.0
Prepare release 0.9.0
2 parents 4126cf9 + ce7e76b commit 1bec680

File tree

5 files changed

+17
-5
lines changed

5 files changed

+17
-5
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,18 @@ All notable changes to this project will be documented in this file.
99
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.1.0/)
1010
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
1111

12+
## [0.9.0] - 2025-10-23
13+
### Added
14+
- In the samples, support for the NXP FRDM RW612 board, including WiFi functionality.
15+
16+
### Changed
17+
- Update the Astarte device SDK to v0.9.0.
18+
- Support for Zephyr 4.2.1.
19+
20+
### Removed
21+
- The `wifi_scan.h` header as the wifi scan functionality is now embedded within the edgehog
22+
device.
23+
1224
## [0.8.0] - 2025-03-26
1325
### Added
1426
- The `edgehog_device_poll` function that should be called periodically throughout the lifetime of

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Second, a new entry should be added to the projects list:
5151
remote: edgehog-device-manager
5252
repo-path: edgehog-zephyr-device.git
5353
path: edgehog-zephyr-device
54-
revision: v0.8.0
54+
revision: v0.9.0
5555
import: true
5656
```
5757
Remember to run `west update` after performing changes to the manifest file.
@@ -80,7 +80,7 @@ The second step is to initialize the west workspace, using the Edgehog library r
8080
manifest repository.
8181

8282
```shell
83-
west init -m git@github.com:edgehog-device-manager/edgehog-zephyr-device --mr v0.8.0
83+
west init -m git@github.com:edgehog-device-manager/edgehog-zephyr-device --mr v0.9.0
8484
west update
8585
```
8686

doc/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ project(Edgehog-Device-Doc LANGUAGES)
77

88
set(MIN_WEST_VERSION 1.0.0)
99

10-
set(Edgehog_Device_VERSION 0.8.0)
10+
set(Edgehog_Device_VERSION 0.9.0)
1111

1212
message(STATUS "Zephyr base: ${EDGEHOG_DEVICE_BASE}")
1313
message(STATUS "Documentation tag: ${DOC_TAG}")

include/edgehog_device/device.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
/** @brief Major version number */
2929
#define EDGEHOG_DEVICE_MAJOR 0
3030
/** @brief Minor version number */
31-
#define EDGEHOG_DEVICE_MINOR 8
31+
#define EDGEHOG_DEVICE_MINOR 9
3232
/** @brief Patch version number */
3333
#define EDGEHOG_DEVICE_PATCH 0
3434

samples/edgehog_app/README_NXP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ installed, this can be done through the
4141

4242
The application demonstrates the use of the
4343
[Edgehog device for Zephyr](https://github.com/edgehog-device-manager/edgehog-zephyr-device) at
44-
version **0.8.0** in conjunction with [Zephyr RTOS](https://github.com/zephyrproject-rtos/zephyr) at
44+
version **0.9.0** in conjunction with [Zephyr RTOS](https://github.com/zephyrproject-rtos/zephyr) at
4545
version **4.1.0**.
4646

4747
Every Edgehog device relies internally on the [Astarte](https://docs.astarte-platform.org/) platform

0 commit comments

Comments
 (0)