diff --git a/src/DateTime_Generic.h b/src/DateTime_Generic.h index 284f8bd..8a56696 100644 --- a/src/DateTime_Generic.h +++ b/src/DateTime_Generic.h @@ -6,7 +6,8 @@ Built by Khoi Hoang https://github.com/khoih-prog/RP2040_RTC Licensed under MIT license - Version: 1.0.8 + + Version: 1.1.0 Version Modified By Date Comments ------- ----------- ---------- ----------- @@ -19,6 +20,7 @@ 1.0.6 K Hoang 22/10/2021 Fix platform in library.json for PIO 1.0.7 K Hoang 01/11/2021 Fix bug in rtc_set_datetime() 1.0.8 K Hoang 20/01/2022 Update dependency + 1.1.0 K Hoang 25/04/2022 Use new Ethernet_Generic library. Add support to W5100S *****************************************************************************************************************************/ #pragma once diff --git a/src/RP2040_RTC.h b/src/RP2040_RTC.h index 19b2cc7..f681afb 100644 --- a/src/RP2040_RTC.h +++ b/src/RP2040_RTC.h @@ -5,7 +5,8 @@ Built by Khoi Hoang https://github.com/khoih-prog/RP2040_RTC Licensed under MIT license - Version: 1.0.8 + + Version: 1.1.0 Version Modified By Date Comments ------- ----------- ---------- ----------- @@ -18,6 +19,7 @@ 1.0.6 K Hoang 22/10/2021 Fix platform in library.json for PIO 1.0.7 K Hoang 01/11/2021 Fix bug in rtc_set_datetime() 1.0.8 K Hoang 20/01/2022 Update dependency + 1.1.0 K Hoang 25/04/2022 Use new Ethernet_Generic library. Add support to W5100S *****************************************************************************************************************************/ #pragma once @@ -25,13 +27,13 @@ #ifndef RP2040_RTC_H #define RP2040_RTC_H -#define RP2040_RTC_VERSION "RP2040_RTC v1.0.8" +#define RP2040_RTC_VERSION "RP2040_RTC v1.1.0" #define RP2040_RTC_VERSION_MAJOR 1 -#define RP2040_RTC_VERSION_MINOR 0 -#define RP2040_RTC_VERSION_PATCH 8 +#define RP2040_RTC_VERSION_MINOR 1 +#define RP2040_RTC_VERSION_PATCH 0 -#define RP2040_RTC_VERSION_INT 1000008 +#define RP2040_RTC_VERSION_INT 1001000 #if !defined(RTC_DEBUG) #define RTC_DEBUG false