Update changelog; add BuildInfo.

pull/36/head
mike wakerly 2012-11-28 10:35:56 -08:00
rodzic 111707c92f
commit 0424133e58
2 zmienionych plików z 29 dodań i 2 usunięć

Wyświetl plik

@ -1,3 +1,11 @@
2011-12-28 mike wakerly <opensource@hoho.com>
Current Version (in development)
* New driver methods: getCD, getCTS, getDSR, getDTR, setDTR, getRI, getRTS,
setRTS.
* Library version is available in `com.hoho.android.usbserial.BuildInfo`.
* Initial release.
v0.1.0 (2012-10-12)
* New driver: CdcAcmSerialDriver.
* Better tuned read and write buffer sizes.
v0.0.1 (2011-12-28)
* Initial release.

Wyświetl plik

@ -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.");
}
}