ArduinoSTL Versions Save

An STL and iostream implementation based on uClibc++ that supports my CS-11M class.

v1.3.3

2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/mike-matera/ArduinoSTL/compare/v1.3.2...v1.3.3

v1.3.2

2 years ago

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.

v1.1.0

6 years ago

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.

v1.0.5

6 years ago

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

v1.0.4

6 years ago

This release updates the version in library.properties.

v1.0.3

6 years ago

Thanks to a generous pull request.

v1.0.2

7 years ago

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

v0.1.8

7 years ago

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

v0.1.7

7 years ago

Added code to make the following work:

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

v0.1.6

7 years ago

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