Skip to content

Commit

Permalink
Release v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabrice V committed Jun 16, 2020
1 parent 1cd8102 commit 389478c
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ jobs:
- name: Build with Gradle
run: ./gradlew shadowJar
- name: Run validator on MBTA data
run: java -jar application/cli-app/build/libs/gtfs-validator-v1.1.0-SNAPSHOT.jar -u https://transitfeeds.com/p/mbta/64/20200531/download -i input.zip -e input -o output
run: java -jar application/cli-app/build/libs/gtfs-validator-v1.2.0.jar -u https://transitfeeds.com/p/mbta/64/20200531/download -i input.zip -e input -o output
4 changes: 2 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The command line output will tell you where the compiled JAR file is located - f
This file can then be run from the command-line with the normal Java conventions:

```
java -jar gtfs-validator-v1.1.0.jar -u https://transitfeeds.com/p/mbta/64/latest/download -z input.zip -e input -o output
java -jar gtfs-validator-v1.1.0.jar -u https://transitfeeds.com/p/mbta/64/latest/download -i input.zip -e input -o output
```

This file can also be be run from the command-line with execution parameters coming from file `execution-parameters.json` located in the working directory:
Expand All @@ -36,7 +36,7 @@ With file `execution-parameters.json` content:
"extract": "input",
"output": "output",
"url": "https://transitfeeds.com/p/mbta/64/latest/download",
"zipinput": "input.zip"
"input": "input.zip"
}
```

Expand Down
2 changes: 1 addition & 1 deletion adapter/parser/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
}

group 'org.mobilitydata'
version '1.1.0-SNAPSHOT'
version '1.2.0'

sourceCompatibility = JavaVersion.VERSION_11

Expand Down
2 changes: 1 addition & 1 deletion adapter/protos/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
}

group 'org.mobilitydata'
version '1.1.0-SNAPSHOT'
version '1.2.0'

sourceCompatibility = JavaVersion.VERSION_11

Expand Down
2 changes: 1 addition & 1 deletion adapter/repository/in-memory-simple/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
}

group 'org.mobilitydata'
version '1.1.0-SNAPSHOT'
version '1.2.0'

sourceCompatibility = JavaVersion.VERSION_11

Expand Down
2 changes: 1 addition & 1 deletion adapter/tree/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
}

group 'org.mobilitydata'
version '1.1.0-SNAPSHOT'
version '1.2.0'

sourceCompatibility = JavaVersion.VERSION_11

Expand Down
2 changes: 1 addition & 1 deletion adapter/validator/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
}

group 'org.mobilitydata'
version '1.1.0-SNAPSHOT'
version '1.2.0'

sourceCompatibility = JavaVersion.VERSION_11

Expand Down
2 changes: 1 addition & 1 deletion application/cli-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ plugins {
}

group 'org.mobilitydata'
version '1.1.0-SNAPSHOT'
version '1.2.0'

jar {
// Add the manifest within the JAR, using gtfs-validator as the title
Expand Down

0 comments on commit 389478c

Please sign in to comment.