Skip to content

Commit 7411053

Browse files
committed
Merge branch 'dev-2.6.1'
2 parents cb5ca6e + d23ea22 commit 7411053

File tree

6 files changed

+8
-3
lines changed

6 files changed

+8
-3
lines changed

changelog.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## Version 2.6.1
4+
Fixed:
5+
Air Quality Sensor example for sensor type GP2Y1014AU0F
6+
37
## Version 2.6.0
48
New:
59
- Devices

examples/Camera/Camera.ino

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
#include "SinricPro.h"
3333
#include "SinricProCamera.h"
3434

35+
// Micro-RTSP from https://github.com/geeksville/Micro-RTSP
3536
#include "SimStreamer.h"
3637
#include "OV2640Streamer.h"
3738
#include "CRtspSession.h"

library.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"maintainer": true
1414
}
1515
],
16-
"version": "2.6.0",
16+
"version": "2.6.1",
1717
"frameworks": "arduino",
1818
"platforms": [
1919
"espressif8266",

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=SinricPro
2-
version=2.6.0
2+
version=2.6.1
33
author=Boris Jaeger <[email protected]>
44
maintainer=Boris Jaeger <[email protected]>
55
sentence=Library for https://sinric.pro - simple way to connect your device to alexa

src/SinricProConfig.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
// Version Configuration
2626
#define SINRICPRO_VERSION_MAJOR 2
2727
#define SINRICPRO_VERSION_MINOR 6
28-
#define SINRICPRO_VERSION_REVISION 0
28+
#define SINRICPRO_VERSION_REVISION 1
2929
#define SINRICPRO_VERSION STR(SINRICPRO_VERSION_MAJOR) "." STR(SINRICPRO_VERSION_MINOR) "." STR(SINRICPRO_VERSION_REVISION)
3030

3131
// Server Configuration

0 commit comments

Comments
 (0)