Bump the version number to 1.1 for the network table changes

Change-Id: Id3ed20c88de5744acfe95ed0916c3c7f3fc0e386
This commit is contained in:
Brad Miller
2015-02-10 17:21:02 -05:00
parent bfa4bbaf78
commit 88b809d24f
2 changed files with 2 additions and 2 deletions

View File

@@ -65,7 +65,7 @@ RobotBase::RobotBase()
FILE *file = NULL;
file = fopen("/tmp/frc_versions/FRC_Lib_Version.ini", "w");
fputs("2015 C++ 1.0.0", file);
fputs("2015 C++ 1.1.0", file);
if (file != NULL)
fclose(file);
}

View File

@@ -216,7 +216,7 @@ public abstract class RobotBase {
output = new FileOutputStream(file);
output.write("2015 Java 1.0.0".getBytes());
output.write("2015 Java 1.1.0".getBytes());
} catch (IOException ex) {
ex.printStackTrace();