Updated release number for the new release

Change-Id: Ib05f1db442cd1eacd77653c0e0984a5337609f7b
This commit is contained in:
Fredric Silberberg
2016-02-11 16:12:35 -05:00
parent 952ebb11ad
commit bf08a80018
2 changed files with 2 additions and 2 deletions

View File

@@ -56,7 +56,7 @@ RobotBase::RobotBase() : m_ds(DriverStation::GetInstance()) {
file = fopen("/tmp/frc_versions/FRC_Lib_Version.ini", "w");
if (file != nullptr) {
fputs("2016 C++ Release 3", file);
fputs("2016 C++ Release 4", file);
fclose(file);
}
}

View File

@@ -223,7 +223,7 @@ public abstract class RobotBase {
output = new FileOutputStream(file);
output.write("2016 Java Release 3".getBytes());
output.write("2016 Java Release 4".getBytes());
} catch (IOException ex) {
ex.printStackTrace();