Skip to content

Releases: mike-matera/ArduinoSTL

Bug fix release.

16 Feb 17:34
Compare
Choose a tag to compare

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.

04 Jan 05:13
Compare
Choose a tag to compare

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.

04 Apr 15:04
4885bb3
Compare
Choose a tag to compare

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

31 Dec 01:35
Compare
Choose a tag to compare

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

Revision bump to implement vector and map initializers.

20 Jul 14:45
Compare
Choose a tag to compare

This release updates the version in library.properties.

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

18 Jul 04:02
Compare
Choose a tag to compare

First production release.

12 Jan 16:59
Compare
Choose a tag to compare

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

13 Dec 15:54
Compare
Choose a tag to compare

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

Enable Vector Initialization

01 Nov 00:54
Compare
Choose a tag to compare

Added code to make the following work:

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

Fix large floats with cin.

05 Oct 18:11
Compare
Choose a tag to compare

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