mirror of
https://github.com/mik3y/usb-serial-for-android
synced 2025-07-25 18:57:39 +00:00
Update changelog; add BuildInfo.
This commit is contained in:
parent
111707c92f
commit
0424133e58
@ -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.
|
||||||
|
@ -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.");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user