Help with new tag in library

Hi @hacknfly. Unfortunately the logs don't very clearly communicate about this common problem:

Note that it checked out the 0.0.2 tag, but then found that the release 0.0.1 was already loaded.

The problem is that you forgot to update the version field in the library metadata before making the tag:
https://github.com/SantiagoSaldana/SBC/blob/0.0.2/library.properties#L2

version=0.0.1

Even though the unit of library releases in Arduino Library Manager is the Git tag, all versioning of those releases is based on the library.properties version value. The name of the Git tag is not at all a factor in versioning. It's only an arbitrary identifier for that point in the Git history.

In order to be accepted into the Arduino Library Manager index, a library release is required to have a unique version value. Any release with a duplicate version value is rejected.

Here's what you need to do:

  1. Bump the version value in library.properties.
  2. Create a new release or tag in the library repository.

Please let me know if you have any questions