Updated version for beta 1 (#270)

This commit is contained in:
Fred Silberberg
2016-10-13 18:50:39 -07:00
committed by GitHub
parent 567ea1d58d
commit 3784b665de
2 changed files with 2 additions and 2 deletions

View File

@@ -39,7 +39,7 @@ RobotBase::RobotBase() : m_ds(DriverStation::GetInstance()) {
file = std::fopen("/tmp/frc_versions/FRC_Lib_Version.ini", "w");
if (file != nullptr) {
std::fputs("2016 C++ Release 5", file);
std::fputs("v2017.1.0-beta-1", file);
std::fclose(file);
}
}

View File

@@ -215,7 +215,7 @@ public abstract class RobotBase {
file.createNewFile();
try (FileOutputStream output = new FileOutputStream(file)) {
output.write("2016 Java Release 5".getBytes());
output.write("v2017.1.0-beta-1".getBytes());
}
} catch (IOException ex) {