Update the library version string for the driver station (artf4708)

This commit is contained in:
Brad Miller
2015-11-01 15:08:55 -05:00
parent 97a7716a23
commit 042e3a3237
2 changed files with 2 additions and 2 deletions

View File

@@ -57,7 +57,7 @@ RobotBase::RobotBase() : m_ds(DriverStation::GetInstance()) {
FILE *file = nullptr;
file = fopen("/tmp/frc_versions/FRC_Lib_Version.ini", "w");
fputs("2015 C++ 1.2.0", file);
fputs("2016 C++ Beta2.0", file);
if (file != nullptr) fclose(file);
}

View File

@@ -235,7 +235,7 @@ public abstract class RobotBase {
output = new FileOutputStream(file);
output.write("2015 Java 1.2.0".getBytes());
output.write("2016 Java Beta2.0".getBytes());
} catch (IOException ex) {
ex.printStackTrace();