Skip to content

Commit

Permalink
Match v0.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartmscott committed Jun 18, 2018
1 parent 4223934 commit 1e6985b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 14 deletions.
18 changes: 7 additions & 11 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions lite-em
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
2 changes: 1 addition & 1 deletion match
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ JavaJUnit(

Release(
source = "Match"
version = "0.3"
version = "0.4"
extension = "jar"
channel = "cp %s $HOME/match/libraries/"
await = "MatchTestResult"
Expand Down

0 comments on commit 1e6985b

Please sign in to comment.