Skip to content

Commit

Permalink
Merge pull request #41 from Sensirion/fix-string-import
Browse files Browse the repository at this point in the history
Fix string import in ByteArray
  • Loading branch information
psachs authored Jun 19, 2024
2 parents c4a6232 + b1af53d commit c3491bb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [1.3.2] - 2024-06-19

### Fixed
- Change string import to from <string.h> to <string>
- Reporting age for latest samples needs to be in milli-seconds

## [1.3.1] - 2024-04-17

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=Sensirion Gadget BLE Arduino Lib
version=1.3.1
version=1.3.2
author=Bjoern Muntwyler, Jonas Stolle
maintainer=Sensirion AG <sensirion.com>
sentence=Library for BLE communication between BLE Gadgets and the MyAmbience app.
Expand Down
2 changes: 1 addition & 1 deletion src/ByteArray.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

#include "Arduino.h"
#include <array>
#include <string.h>
#include <string>

// Must explicitly instantiate template in Samples.cpp before usage
template <size_t SIZE> class ByteArray {
Expand Down

0 comments on commit c3491bb

Please sign in to comment.