Skip to content

Commit

Permalink
Update Version
Browse files Browse the repository at this point in the history
  • Loading branch information
JaciBrunning committed May 8, 2015
1 parent 9d1869a commit 1e8ca9c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.settings
Original file line number Diff line number Diff line change
@@ -1 +1 @@
toast.version=1.3.0
toast.version=1.3.1
2 changes: 0 additions & 2 deletions src/main/java/jaci/openrio/toast/core/Toast.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
*/
public class Toast extends RobotBase {

//TODO: Heartbeat

private static String[] tastes = new String[] {"Delicious", "Yummy", "Like a buttery heaven", "Needs more salt", "Hot, Hot, HOT!!", "TOTE-aly delicious"};

private static Toast instance;
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/assets/toast/toast.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.0
1.3.1
9 changes: 9 additions & 0 deletions unix_gradle.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@

files = ['gradlew', 'build.gradle', 'release/gradlew', 'release/build.gradle', 'patches/gradlew', 'patches/build.gradle']

files.each do |filename|
file_content = File.read(filename)
new_content = file_content.gsub(/\r\n?/, "\n")

File.open(filename, "w") { |file| file.puts new_content }
end

0 comments on commit 1e8ca9c

Please sign in to comment.