pfeerick / elapsedMillis

Arduino 'port' of the elapsedMillis library
MIT License
84 stars 26 forks source link

Add version field #9

Closed ivankravets closed 7 years ago

pfeerick commented 7 years ago

Thanks for that, makes sense.

ivankravets commented 7 years ago

We introduced PlatformIO 3.0 yesterday. It has improved Library Manager with Semantic Versioning support. It means, that developers can create project and depend on the specific version of your library.

For example, platformio lib install elapsedMillis@~1.0.4 to lib_deps = elapsedMillis@^1.0.4... See http://docs.platformio.org/en/stable/userguide/lib/cmd_install.html

Thanks!