1
0
mirror of https://github.com/mik3y/usb-serial-for-android.git synced 2026-08-11 16:32:53 +00:00

Update changelog; add BuildInfo.

This commit is contained in:
mike wakerly
2012-11-28 10:35:56 -08:00
parent 111707c92f
commit 0424133e58
2 changed files with 29 additions and 2 deletions
@@ -0,0 +1,19 @@
package com.hoho.android.usbserial;
/**
* Static container of information about this library.
*/
public final class BuildInfo {
/**
* The current version of this library. Values are of the form
* "major.minor.micro[-suffix]". A suffix of "-pre" indicates a pre-release
* of the version preceeding it.
*/
public static final String VERSION = "0.2.0-pre";
private BuildInfo() {
throw new IllegalStateException("Non-instantiable class.");
}
}