Skip to content

Releases: mike-matera/ArduinoSTL

Bug fix release.

Choose a tag to compare

@mike-matera mike-matera released this 16 Feb 17:34

What's Changed

  • Fix broken std::string assign() by @lglina in #71

New Contributors

Full Changelog: v1.3.2...v1.3.3

Back from the dead. Merge updates from uClibc++, ciband and the now official Arduino library.

Choose a tag to compare

@mike-matera mike-matera released this 04 Jan 05:13

With this release I'm trying to make this project sync with the new official Arduino STL library. Depending on what they want to do this repository may be deprecated in the future. This will work again in the library manager.

Enable switching serial ports.

Choose a tag to compare

@mike-matera mike-matera released this 04 Apr 15:04
4885bb3

This release enables users to switch the serial ports that cin, cout and printf() use. Additionally users may disable the instantiation of cin and and cout to save memory. The default is still to use Serial on the platform and the change is backwards compatible with existing sketches.

Bugfixes in complex and algorithm

Choose a tag to compare

@mike-matera mike-matera released this 31 Dec 01:35

This is a bugfix release. Thanks to folks for reporting bugs!

Revision bump to implement vector and map initializers.

Choose a tag to compare

@mike-matera mike-matera released this 20 Jul 14:45

This release updates the version in library.properties.

Adding support for std::vector and std::map initializers.

Choose a tag to compare

@mike-matera mike-matera released this 18 Jul 04:02

Thanks to a generous pull request.

First production release.

Choose a tag to compare

@mike-matera mike-matera released this 12 Jan 16:59

This release is the first production release. The library was successfully used in a semester of CS-11M. Thanks to @amotl for bugfixes.

Bugfix release for Issue #3

Choose a tag to compare

@mike-matera mike-matera released this 13 Dec 15:54

This release fixes problems on SAMD platform, which doesn't automatically include the types in stdint.h

Enable Vector Initialization

Choose a tag to compare

@mike-matera mike-matera released this 01 Nov 00:54

Added code to make the following work:

vector<int> myVect {1, 2, 3, 4, 5};

Fix large floats with cin.

Choose a tag to compare

@mike-matera mike-matera released this 05 Oct 18:11

A fix for input of large floats. Like output it still needs work.