Skip to content

Commit 4259cb3

Browse files
authored
Merge pull request #398 from sinricpro/fix-arduino-lint
fix: arduino lint errors
2 parents 9b66e48 + ee2be66 commit 4259cb3

File tree

5 files changed

+14
-5
lines changed

5 files changed

+14
-5
lines changed

LICENSE.txt

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Copyright (c) 2019-2025 Sinric. All rights reserved.
2+
Licensed under Creative Commons Attribution-Share Alike (CC BY-SA)
3+
4+
This file is part of the Sinric Pro (https://github.com/sinricpro/esp8266-esp32-sdk/)

changelog.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# Changelog
2+
3+
## Version 3.2.1
4+
- Fixed Arduino Lint errors
5+
- LICENSE.txt added
6+
27
## Version 3.2.0
38
### New
49
- Support OTA Updates

library.json

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

library.properties

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name=SinricPro
2-
version=3.2.0
2+
version=3.2.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
66
paragraph=Simple way to control your IOT development boards like ESP8226 or ESP32 with Amazon Alexa or Google Home
77
category=Communication
8-
url=https://sinricpro.github.io/esp8266-esp32-sdk/index.html
8+
url=https://github.com/sinricpro/esp8266-esp32-sdk/
99
architectures=esp8266,esp32,rp2040
1010
repository=https://github.com/sinricpro/esp8266-esp32-sdk.git
1111
license=CC-BY-SA
12-
depends=ArduinoJson@7.0.3,WebSockets@2.4.0
12+
depends=ArduinoJson (>=7.0.3), WebSockets (>=2.4.0)
1313
includes=SinricPro.h

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 2
9-
#define SINRICPRO_VERSION_REVISION 0
9+
#define SINRICPRO_VERSION_REVISION 1
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)