Skip to content

Commit 1e6985b

Browse files
committed
Match v0.4 release
1 parent 4223934 commit 1e6985b

3 files changed

Lines changed: 10 additions & 14 deletions

File tree

RELEASE.md

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,17 @@ Match Release
1212
- Parallel builds
1313
- Supports extensions with project-, language-, and/or workspace-specific rules.
1414

15-
16-
15+
# v0.4
16+
- Adds Android support
17+
- Adds Java Protobuf and Protobuf Lite support
18+
- Adds Zip support
19+
- Improves Library handling
20+
- Build timeouts
21+
- Ditch "main" package for "match"
1722

1823
# 20180801
1924
- Move to YYYYMMDD-based versioning for automation
2025
- Leverage Config for arguments and configurations
21-
- Add support for
22-
- Android
23-
- Library
24-
- Protobuf
25-
- Protobuf Lite
26-
- Release
27-
- Zip
28-
- Build timeouts
29-
- Ditch "main" package for "match"
3026

3127
# 20180901
3228

lite-em

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
LIBRARIES="$HOME/match/libraries"
1818
CONFIG_JAR="$LIBRARIES/Config-0.1.jar"
19-
MATCH_JAR="$LIBRARIES/Match-0.3.jar"
19+
MATCH_JAR="$LIBRARIES/Match-0.4.jar"
2020

2121
if [ ! -d "$LIBRARIES" ]; then
2222
mkdir -p $LIBRARIES
@@ -26,7 +26,7 @@ if [ ! -f "$CONFIG_JAR" ]; then
2626
fi
2727

2828
if [ ! -f "$MATCH_JAR" ]; then
29-
curl -L https://github.com/stuartmscott/Match/releases/download/v0.3/Match-0.3.jar -o $MATCH_JAR
29+
curl -L https://github.com/stuartmscott/Match/releases/download/v0.4/Match-0.4.jar -o $MATCH_JAR
3030
fi
3131

3232
java -cp $CONFIG_JAR:$MATCH_JAR match.Match root=. libraries="$LIBRARIES"

match

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ JavaJUnit(
7474

7575
Release(
7676
source = "Match"
77-
version = "0.3"
77+
version = "0.4"
7878
extension = "jar"
7979
channel = "cp %s $HOME/match/libraries/"
8080
await = "MatchTestResult"

0 commit comments

Comments
 (0)