Skip to content

Commit 1e1b16c

Browse files
committed
chore: bump STM32_RTC_VERSION to 2.0.0
Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
1 parent a1bb85c commit 1e1b16c

4 files changed

Lines changed: 8 additions & 5 deletions

File tree

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
A RTC library for STM32.
33

44
## Requirement
5-
* [Arduino_Core_STM32](https://github.com/stm32duino/Arduino_Core_STM32) version >= 1.3.0
5+
* Library version 1.x.x:
6+
* [Arduino_Core_STM32](https://github.com/stm32duino/Arduino_Core_STM32) version >= 1.3.0
7+
* Library version 2.x.x:
8+
* [Arduino_Core_STM32](https://github.com/stm32duino/Arduino_Core_STM32) version 3.x.x
69

710
# API
811

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"type": "git",
88
"url": "https://github.com/stm32duino/STM32RTC"
99
},
10-
"version": "1.9.0",
10+
"version": "2.0.0",
1111
"frameworks": "arduino",
1212
"platforms": "ststm32",
1313
"build": {

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=STM32duino RTC
2-
version=1.9.0
2+
version=2.0.0
33
author=STMicroelectronics
44
maintainer=stm32duino
55
sentence=Allows to use the RTC functionalities of STM32 based boards.

src/STM32RTC.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151
/**
5252
* @brief STM32 RTC library version number
5353
*/
54-
#define STM32_RTC_VERSION_MAJOR (0x01U) /*!< [31:24] major version */
55-
#define STM32_RTC_VERSION_MINOR (0x04U) /*!< [23:16] minor version */
54+
#define STM32_RTC_VERSION_MAJOR (0x02U) /*!< [31:24] major version */
55+
#define STM32_RTC_VERSION_MINOR (0x00U) /*!< [23:16] minor version */
5656
#define STM32_RTC_VERSION_PATCH (0x00U) /*!< [15:8] patch version */
5757
/*
5858
* Extra label for development:

0 commit comments

Comments
 (0)