Skip to content

Commit 6a1889c

Browse files
authored
Merge pull request #42 from harlem88/prepare-0.5-alpha
Prepare release 0.5.0-alpha
2 parents b01002c + fbf5a88 commit 6a1889c

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-1
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!--
2+
Copyright 2024 SECO Mind Srl
3+
SPDX-License-Identifier: Apache-2.0
4+
-->
5+
6+
# Changelog
7+
All notable changes to this project will be documented in this file.
8+
9+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.1.0/)
10+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
11+
12+
## [0.5.0-alpha] - 2024-04-26
13+
### Added
14+
- Initial release, supports OTA, hardware info, system info and os info.

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.5.99)
10+
set(Edgehog_Device_VERSION 0.5.0-alpha)
1111

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

include/edgehog_device/device.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,13 @@
1616

1717
#include <astarte_device_sdk/device.h>
1818

19+
/** @brief Major version number */
20+
#define EDGEHOG_DEVICE_MAJOR 0
21+
/** @brief Minor version number */
22+
#define EDGEHOG_DEVICE_MINOR 4
23+
/** @brief Patch version number */
24+
#define EDGEHOG_DEVICE_PATCH 99
25+
1926
typedef struct edgehog_device_t *edgehog_device_handle_t;
2027

2128
/**

0 commit comments

Comments
 (0)