Skip to content

Commit 62540f8

Browse files
committed
chore: version update and fix formatting
1 parent 4ba2a9d commit 62540f8

File tree

4 files changed

+17
-30
lines changed

4 files changed

+17
-30
lines changed

changelog.md

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
# Changelog
22

3-
## Version 3.5.1
4-
Fixed:
5-
- Logging messages.
6-
3+
## Version 3.5.0
74
New:
8-
- Support Start/Stop Controller for custom device types
5+
- Support Start/Stop and Open/Close capabilities.
96

107
## Version 3.4.1
118
Fixed:

library.json

+13-23
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,38 @@
11
{
22
"name": "SinricPro",
3-
"keywords": "ethernet, sinric, alexa, iot",
4-
"description": "Library for https://sinric.pro - simple way to connect your device to alexa",
3+
"keywords": "sinric, alexa, google home, iot",
4+
"description": "Library for https://sinric.pro - simple way to connect your device to alexa and google home",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/sinricpro/esp8266-esp32-sdk"
88
},
99
"authors": [
10+
{
11+
"name": "SinricPro",
12+
"url": "https://sinric.pro"
13+
},
1014
{
1115
"name": "Boris Jaeger",
1216
"email": "[email protected]",
1317
"maintainer": true
1418
}
1519
],
16-
"version": "3.5.1",
20+
"homepage": "https://sinric.pro",
21+
"version": "3.5.0",
1722
"frameworks": "arduino",
18-
"platforms": [
19-
"espressif8266",
20-
"espressif32",
21-
"raspberrypi"
22-
],
23+
"platforms": ["espressif8266", "espressif32", "raspberrypi"],
2324
"dependencies": [
2425
{
2526
"name": "ArduinoJson",
2627
"version": "^7.0.3",
27-
"platforms": [
28-
"espressif32",
29-
"espressif8266",
30-
"raspberrypi"
31-
]
28+
"platforms": ["espressif32", "espressif8266", "raspberrypi"]
3229
},
3330
{
3431
"name": "WebSockets",
3532
"version": "^2.4.0",
36-
"platforms": [
37-
"espressif32",
38-
"espressif8266",
39-
"raspberrypi"
40-
]
33+
"platforms": ["espressif32", "espressif8266", "raspberrypi"]
4134
}
4235
],
43-
"examples": [
44-
"examples/*/*.ino",
45-
"examples/*/*/*.ino"
46-
],
36+
"examples": ["examples/*/*.ino", "examples/*/*/*.ino"],
4737
"license": "CC-BY-SA-4.0"
48-
}
38+
}

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=SinricPro
2-
version=3.5.1
2+
version=3.5.0
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/SinricProVersion.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// Version Configuration
77
#define SINRICPRO_VERSION_MAJOR 3
88
#define SINRICPRO_VERSION_MINOR 5
9-
#define SINRICPRO_VERSION_REVISION 1
9+
#define SINRICPRO_VERSION_REVISION 0
1010
#define SINRICPRO_VERSION STR(SINRICPRO_VERSION_MAJOR) "." STR(SINRICPRO_VERSION_MINOR) "." STR(SINRICPRO_VERSION_REVISION)
1111
#define SINRICPRO_VERSION_STR "SinricPro (v" SINRICPRO_VERSION ")"
1212
#define SINRICPRO_VERISON_INT SINRICPRO_VERSION_MAJOR * 1000000 + SINRICPRO_VERSION_MINOR * 1000 + SINRICPRO_VERSION_REVISION

0 commit comments

Comments
 (0)