Skip to content

Commit

Permalink
Merge pull request #193 from mcci-catena/issue192
Browse files Browse the repository at this point in the history
Fix #192: prepare v3.0.5 release
  • Loading branch information
terrillmoore authored Mar 18, 2022
2 parents 9375c3a + 1731052 commit ee8155d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
12 changes: 7 additions & 5 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.4...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.5...master)

**Contents:**
<!-- markdownlint-disable MD033 -->
Expand All @@ -15,10 +15,10 @@ For general information, please check the stm32duino [README.md](https://github.
- [Getting Started](#getting-started)
- [Features](#features)
- [Supported Boards and CPUs](#supported-boards-and-cpus)
- [Catena 461x Series](#catena-461x-series)
- [Sensors on Catena 4612, 4617, and 4618](#sensors-on-catena-4612-4617-and-4618)
- [Catena 4630 Features](#catena-4630-features)
- [Catena 480x Features](#catena-480x-features)
- [Catena 461x Series](#catena-461x-series)
- [Sensors on Catena 4612, 4617, and 4618](#sensors-on-catena-4612-4617-and-4618)
- [Catena 4630 Features](#catena-4630-features)
- [Catena 480x Features](#catena-480x-features)
- [Troubleshooting](#troubleshooting)
- [Installing a Development Copy of this BSP](#installing-a-development-copy-of-this-bsp)
- [Release History](#release-history)
Expand Down Expand Up @@ -156,6 +156,8 @@ Remember to restart the IDE whenever you change `platform.txt`, `boards.txt` or

## Release History

- [v3.0.5](https://github.com/mcci-catena/Arduino_Core_STM32/releases/tag/v3.0.5) Patch release. Don't use `<algorithm>` to implement `min()` and `max()` ([#184](https://github.com/mcci-catena/Arduino_Core_STM32/issues/184)). Prevent hangs if USB is enabled but D+/D- float to high/high ([#189](https://github.com/mcci-catena/Arduino_Core_STM32/issues/189), [#190](https://github.com/mcci-catena/Arduino_Core_STM32/issues/190)) -- thanks to Mohammed Mayyan ([@mmayyan](https://github.com/mhmayyan)) for help in finding this.

- [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.
Expand Down
4 changes: 2 additions & 2 deletions cores/arduino/Arduino.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
Arduino.h - Main include file for the Arduino SDK
Copyright (c) 2005-2013 Arduino Team. All right reserved.
Copyright (c) 2019-2021 MCCI Corporation. All rights reserved.
Copyright (c) 2019-2022 MCCI Corporation. All rights reserved.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
Expand Down 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, 5, 2) /* v3.0.5-pre2 */
_mcci_arduino_version_calc(3, 0, 5, 0) /* v3.0.5 */

///
/// \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.4
version=3.0.5

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

0 comments on commit ee8155d

Please sign in to comment.