From 1e6985bdf2127c94f548a33da65b6dedfc2750dd Mon Sep 17 00:00:00 2001 From: Stuart Scott Date: Mon, 18 Jun 2018 15:27:12 -0700 Subject: [PATCH] Match v0.4 release --- RELEASE.md | 18 +++++++----------- lite-em | 4 ++-- match | 2 +- 3 files changed, 10 insertions(+), 14 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index 5c2ce71..d8fb61e 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -12,21 +12,17 @@ Match Release - Parallel builds - Supports extensions with project-, language-, and/or workspace-specific rules. - - +# v0.4 +- Adds Android support +- Adds Java Protobuf and Protobuf Lite support +- Adds Zip support +- Improves Library handling +- Build timeouts +- Ditch "main" package for "match" # 20180801 - Move to YYYYMMDD-based versioning for automation - Leverage Config for arguments and configurations -- Add support for - - Android - - Library - - Protobuf - - Protobuf Lite - - Release - - Zip -- Build timeouts -- Ditch "main" package for "match" # 20180901 diff --git a/lite-em b/lite-em index 9215185..0333a1e 100755 --- a/lite-em +++ b/lite-em @@ -16,7 +16,7 @@ LIBRARIES="$HOME/match/libraries" CONFIG_JAR="$LIBRARIES/Config-0.1.jar" -MATCH_JAR="$LIBRARIES/Match-0.3.jar" +MATCH_JAR="$LIBRARIES/Match-0.4.jar" if [ ! -d "$LIBRARIES" ]; then mkdir -p $LIBRARIES @@ -26,7 +26,7 @@ if [ ! -f "$CONFIG_JAR" ]; then fi if [ ! -f "$MATCH_JAR" ]; then - curl -L https://github.com/stuartmscott/Match/releases/download/v0.3/Match-0.3.jar -o $MATCH_JAR + curl -L https://github.com/stuartmscott/Match/releases/download/v0.4/Match-0.4.jar -o $MATCH_JAR fi java -cp $CONFIG_JAR:$MATCH_JAR match.Match root=. libraries="$LIBRARIES" diff --git a/match b/match index 3dc745c..be5c551 100644 --- a/match +++ b/match @@ -74,7 +74,7 @@ JavaJUnit( Release( source = "Match" - version = "0.3" + version = "0.4" extension = "jar" channel = "cp %s $HOME/match/libraries/" await = "MatchTestResult"