From 2db754c9c3ab432b32d076aaa3a14ec3d4529780 Mon Sep 17 00:00:00 2001 From: Armin Date: Wed, 18 Sep 2024 11:46:23 +0200 Subject: [PATCH] Bumped version to 1.3.3 --- README.md | 3 +++ library.json | 2 +- library.properties | 2 +- src/Talkie.h | 7 +++++-- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 19f8821..a4ba13c 100644 --- a/README.md +++ b/README.md @@ -155,6 +155,9 @@ If you are using [Sloeber](https://eclipse.baeyens.it) as your IDE, you can easi ![Fritzing schematic for voltmeter example](https://github.com/ArminJo/Talkie/blob/master/extras/TalkieVoltmeter_Steckplatine.png) # Revision History +### Version 1.3.3 +- Adding support for SAMD51 and ESP32 core 3.x. + ### Version 1.3.2 - Fixed ESP32 timer bug. diff --git a/library.json b/library.json index e244b4e..45c8ae3 100644 --- a/library.json +++ b/library.json @@ -6,7 +6,7 @@ "type": "git", "url": "https://github.com/ArminJo/Talkie" }, - "version": "1.3.2", + "version": "1.3.3", "exclude": "pictures", "authors": { "name": "Armin Joachimsmeyer", diff --git a/library.properties b/library.properties index 4533864..ce34fff 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=Talkie -version=1.3.2 +version=1.3.3 author=Peter Knight, Armin Joachimsmeyer maintainer=Armin Joachimsmeyer sentence=Speech library for Arduino. Generates speech from a fixed vocabulary encoded with LPC. diff --git a/src/Talkie.h b/src/Talkie.h index 590f963..7b4d37e 100644 --- a/src/Talkie.h +++ b/src/Talkie.h @@ -32,10 +32,10 @@ #include -#define VERSION_TALKIE "1.3.2" +#define VERSION_TALKIE "1.3.3" #define VERSION_TALKIE_MAJOR 1 #define VERSION_TALKIE_MINOR 3 -#define VERSION_TALKIE_PATCH 2 +#define VERSION_TALKIE_PATCH 3 // The change log is at the bottom of the file @@ -117,6 +117,9 @@ class Talkie { }; /* + * Version 1.3.3 + * - Adding support for SAMD51 and ESP32 core 3.x. + * * Version 1.3.2 * - Fixed ESP32 timer bug. *