Skip to content

Commit

Permalink
Merge pull request #398 from sinricpro/fix-arduino-lint
Browse files Browse the repository at this point in the history
fix: arduino lint errors
  • Loading branch information
kakopappa authored Aug 4, 2024
2 parents 9b66e48 + ee2be66 commit 4259cb3
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
4 changes: 4 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Copyright (c) 2019-2025 Sinric. All rights reserved.
Licensed under Creative Commons Attribution-Share Alike (CC BY-SA)

This file is part of the Sinric Pro (https://github.com/sinricpro/esp8266-esp32-sdk/)
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# Changelog

## Version 3.2.1
- Fixed Arduino Lint errors
- LICENSE.txt added

## Version 3.2.0
### New
- Support OTA Updates
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"maintainer": true
}
],
"version": "3.2.0",
"version": "3.2.1",
"frameworks": "arduino",
"platforms": [
"espressif8266",
Expand Down
6 changes: 3 additions & 3 deletions library.properties
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name=SinricPro
version=3.2.0
version=3.2.1
author=Boris Jaeger <[email protected]>
maintainer=Boris Jaeger <[email protected]>
sentence=Library for https://sinric.pro - simple way to connect your device to alexa
paragraph=Simple way to control your IOT development boards like ESP8226 or ESP32 with Amazon Alexa or Google Home
category=Communication
url=https://sinricpro.github.io/esp8266-esp32-sdk/index.html
url=https://github.com/sinricpro/esp8266-esp32-sdk/
architectures=esp8266,esp32,rp2040
repository=https://github.com/sinricpro/esp8266-esp32-sdk.git
license=CC-BY-SA
depends=ArduinoJson@7.0.3,WebSockets@2.4.0
depends=ArduinoJson (>=7.0.3), WebSockets (>=2.4.0)
includes=SinricPro.h
2 changes: 1 addition & 1 deletion src/SinricProVersion.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// Version Configuration
#define SINRICPRO_VERSION_MAJOR 3
#define SINRICPRO_VERSION_MINOR 2
#define SINRICPRO_VERSION_REVISION 0
#define SINRICPRO_VERSION_REVISION 1
#define SINRICPRO_VERSION STR(SINRICPRO_VERSION_MAJOR) "." STR(SINRICPRO_VERSION_MINOR) "." STR(SINRICPRO_VERSION_REVISION)
#define SINRICPRO_VERSION_STR "SinricPro (v" SINRICPRO_VERSION ")"
#define SINRICPRO_VERISON_INT SINRICPRO_VERSION_MAJOR * 1000000 + SINRICPRO_VERSION_MINOR * 1000 + SINRICPRO_VERSION_REVISION

0 comments on commit 4259cb3

Please sign in to comment.