From c01854b3e2b57defbb990cad998276b33f2ab481 Mon Sep 17 00:00:00 2001 From: Terry Moore Date: Fri, 21 May 2021 19:17:05 -0400 Subject: [PATCH 1/2] This is v3.0.1. Closes #162. --- cores/arduino/Arduino.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cores/arduino/Arduino.h b/cores/arduino/Arduino.h index fff66484bf..e30a91ea94 100644 --- a/cores/arduino/Arduino.h +++ b/cores/arduino/Arduino.h @@ -52,7 +52,7 @@ /// \ref _mcci_arduino_version_calc() to compare relative versions. /// #define _mcci_arduino_version \ - _mcci_arduino_version_calc(3, 0, 1, 3) /* v3.0.1-3 */ + _mcci_arduino_version_calc(3, 0, 1, 0) /* v3.0.1 */ /// /// \brief get major version code from semantic version value From dbdcf3d997e70327adc48c5c1ed44b2ee6f5f5ac Mon Sep 17 00:00:00 2001 From: Terry Moore Date: Fri, 21 May 2021 19:24:35 -0400 Subject: [PATCH 2/2] Update README for release --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d20c29e372..2966c8f6c9 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ This repository is MCCI's version of [Arduino_Core_STM32](https://github.com/stm For general information, please check the stm32duino [README.md](https://github.com/stm32duino/Arduino_Core_STM32#arduino-core-support-for-stm32-based-boards), especially the [Getting Started](https://github.com/stm32duino/Arduino_Core_STM32#getting-started) section. -[![GitHub release](https://img.shields.io/github/release/mcci-catena/Arduino_Core_STM32.svg)](https://github.com/mcci-catena/Arduino_Core_STM32/releases/latest) [![GitHub commits](https://img.shields.io/github/commits-since/mcci-catena/Arduino_Core_STM32/latest.svg)](https://github.com/mcci-catena/Arduino_Core_STM32/compare/v3.0.0...master) +[![GitHub release](https://img.shields.io/github/release/mcci-catena/Arduino_Core_STM32.svg)](https://github.com/mcci-catena/Arduino_Core_STM32/releases/latest) [![GitHub commits](https://img.shields.io/github/commits-since/mcci-catena/Arduino_Core_STM32/latest.svg)](https://github.com/mcci-catena/Arduino_Core_STM32/compare/v3.0.1...master) **Contents:** @@ -156,6 +156,8 @@ Remember to restart the IDE whenever you change `platform.txt`, `boards.txt` or ## Release History +- [v3.0.1](https://github.com/mcci-catena/Arduino_Core_STM32/releases/tag/v3.0.1) Patch release. Make "download with bootloader" the default choice in the IDE ([#158](https://github.com/mcci-catena/Arduino_Core_STM32/issues/158)). Windows "download with bootloader was broken for DFU ([#164](https://github.com/mcci-catena/Arduino_Core_STM32/issues/164)) and STLink ([#167](https://github.com/mcci-catena/Arduino_Core_STM32/issues/167)). + - [v3.0.0](https://github.com/mcci-catena/Arduino_Core_STM32/releases/tag/v3.0.0) Switch to true semantic versioning [#150](https://github.com/mcci-catena/Arduino_Core_STM32/issues/150). Add support for MCCI trusted bootloader [#148](https://github.com/mcci-catena/Arduino_Core_STM32/issues/148), [#149](https://github.com/mcci-catena/Arduino_Core_STM32/issues/149), [#151](https://github.com/mcci-catena/Arduino_Core_STM32/issues/151), [#153](https://github.com/mcci-catena/Arduino_Core_STM32/issues/153). Enable interrupts on entry to reset vector for consistency with ST bootloader. - [v2.8.0](https://github.com/mcci-catena/Arduino_Core_STM32/releases/tag/v2.8.0) Added support for new board: 4802, [#143](https://github.com/mcci-catena/Arduino_Core_STM32/issues/143).