Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for v3.0.4 release #183

Merged
merged 1 commit into from
Oct 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.3...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.4...master)

**Contents:**
<!-- markdownlint-disable MD033 -->
Expand Down Expand Up @@ -156,7 +156,9 @@ Remember to restart the IDE whenever you change `platform.txt`, `boards.txt` or

## Release History

- [v3.0.3](ttps://github.com/mcci-catena/Arduino_Core_STM32/releases/tag/v3.0.3) Patch release. Fix typo in `tools/macosx/stm32l0-upload` that broke DFU on macOS.
- [v3.0.4](https://github.com/mcci-catena/Arduino_Core_STM32/releases/tag/v3.0.4) Patch release. Fix typo in `tools/linux/stm32l0-upload` that broke DFU on Linux.

- [v3.0.3](https://github.com/mcci-catena/Arduino_Core_STM32/releases/tag/v3.0.3) Patch release. Fix typo in `tools/macosx/stm32l0-upload` that broke DFU on macOS.

- [v3.0.2](https://github.com/mcci-catena/Arduino_Core_STM32/releases/tag/v3.0.2) Patch release. Update `mccibootloader_image` tool to v0.4.0 ([#171](https://github.com/mcci-catena/Arduino_Core_STM32/issues/171)) to fix problem with ELF files with unusual number of program headers.

Expand Down
2 changes: 1 addition & 1 deletion cores/arduino/Arduino.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
/// \ref _mcci_arduino_version_calc() to compare relative versions.
///
#define _mcci_arduino_version \
_mcci_arduino_version_calc(3, 0, 3, 0) /* v3.0.2 */
_mcci_arduino_version_calc(3, 0, 4, 0) /* v3.0.4 */

///
/// \brief get major version code from semantic version value
Expand Down
2 changes: 1 addition & 1 deletion platform.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5-3rd-party-Hardware-specification

name=MCCI Catena STM32 Boards
version=3.0.3
version=3.0.4

# STM compile variables
# ----------------------
Expand Down