Skip to content

Commit 88d65ff

Browse files
chore(main): release 7.2.0
1 parent 3b8d1a4 commit 88d65ff

File tree

6 files changed

+25
-5
lines changed

6 files changed

+25
-5
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "7.1.0"
2+
".": "7.2.0"
33
}

CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,26 @@ All notable changes to this project will be documented in this file.
77

88
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
99

10+
## [7.2.0](https://github.com/philips-software/amp-embedded-infra-lib/compare/v7.1.0...v7.2.0) (2025-03-11)
11+
12+
13+
### Features
14+
15+
* Add address type and rssi to discovered device ([#822](https://github.com/philips-software/amp-embedded-infra-lib/issues/822)) ([2e0b3ec](https://github.com/philips-software/amp-embedded-infra-lib/commit/2e0b3ecac46240163795b4cdac69d48423b8de69))
16+
* Add AreAnyBitsSet() and AreAllBitsSet() ([#823](https://github.com/philips-software/amp-embedded-infra-lib/issues/823)) ([f83c37b](https://github.com/philips-software/amp-embedded-infra-lib/commit/f83c37bb48f733b7e7969d52a0432b98db798113))
17+
* Add NoneAllocated to SharedObjectAllocator ([#808](https://github.com/philips-software/amp-embedded-infra-lib/issues/808)) ([ed9ac24](https://github.com/philips-software/amp-embedded-infra-lib/commit/ed9ac24de4934f103975b71da277d13c28674746))
18+
* Add support to create x509 certificates ([#826](https://github.com/philips-software/amp-embedded-infra-lib/issues/826)) ([7dfa477](https://github.com/philips-software/amp-embedded-infra-lib/commit/7dfa477e696294e13d40253f9e0935cd36f4e06f))
19+
* Add support to resolve MAC address ([#792](https://github.com/philips-software/amp-embedded-infra-lib/issues/792)) ([3b8d1a4](https://github.com/philips-software/amp-embedded-infra-lib/commit/3b8d1a4703a6533d2dbc93322a044839b40da2d1))
20+
* Added GetIntegerAs to JsonObject to convert a JsonValue to a target integer width with bounds checking ([#830](https://github.com/philips-software/amp-embedded-infra-lib/issues/830)) ([c4c26e0](https://github.com/philips-software/amp-embedded-infra-lib/commit/c4c26e05d5b559757824c72830269279dc0e3796))
21+
* Documentation update ([#809](https://github.com/philips-software/amp-embedded-infra-lib/issues/809)) ([661a1ee](https://github.com/philips-software/amp-embedded-infra-lib/commit/661a1eeee5cc787f8ab4565c4e7e561bbdaef2a6))
22+
* Streamed http put and post without chunked transfer encoding ([#817](https://github.com/philips-software/amp-embedded-infra-lib/issues/817)) ([1943573](https://github.com/philips-software/amp-embedded-infra-lib/commit/1943573ebc842bba73d8d78cecda11d5dd26e130))
23+
24+
25+
### Bug Fixes
26+
27+
* Services/util/SesameSecured: avoid timing attack on verifying MAC ([#818](https://github.com/philips-software/amp-embedded-infra-lib/issues/818)) ([51dca2d](https://github.com/philips-software/amp-embedded-infra-lib/commit/51dca2dd532975e17cc53e5f43521916ebb2657e))
28+
* Solved crash using uart linux when starting the read thread ([#832](https://github.com/philips-software/amp-embedded-infra-lib/issues/832)) ([a23f00f](https://github.com/philips-software/amp-embedded-infra-lib/commit/a23f00f0ab278d6c6dd7872f5987372f288d5cb0))
29+
1030
## [7.1.0](https://github.com/philips-software/amp-embedded-infra-lib/compare/v7.0.0...v7.1.0) (2025-01-15)
1131

1232

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if (APPLE)
77
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.15" CACHE STRING "Minimum OS X deployment version")
88
endif()
99

10-
project(emil LANGUAGES C CXX VERSION 7.1.0) # x-release-please-version
10+
project(emil LANGUAGES C CXX VERSION 7.2.0) # x-release-please-version
1111

1212
set(CMAKE_CXX_STANDARD 17)
1313
set(CMAKE_CXX_STANDARD_REQUIRED On)

documents/antora.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: embedded_infrastructure_library
22
title: Embedded Infrastructure Library documentation
3-
version: 7.1.0
3+
version: 7.2.0
44
nav:
55
- modules/ROOT/nav.adoc

protobuf/echo/protocol_buffer_echo.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function(emil_fetch_echo_plugins)
1717
return()
1818
endif()
1919

20-
set(emil_version "7.1.0") # x-release-please-version
20+
set(emil_version "7.2.0") # x-release-please-version
2121

2222
if (CMAKE_HOST_WIN32)
2323
set(os_postfix "win64")

sonar-project.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ sonar.organization=philips-software
33

44
sonar.projectName=embeddedinfralib
55
# x-release-please-start-version
6-
sonar.projectVersion=7.1.0
6+
sonar.projectVersion=7.2.0
77
# x-release-please-end
88

99
sonar.links.homepage=https://github.com/philips-software/amp-embedded-infra-lib

0 commit comments

Comments
 (0)