Skip to content

Commit

Permalink
v1.2.1 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabrice V committed Jul 28, 2020
1 parent 514ddd7 commit 87e8670
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 16 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,21 @@ jobs:
- name: Package jar with Gradle
run: ./gradlew shadowJar
- name: Run validator on MBTA data
run: java -jar application/cli-app/build/libs/gtfs-validator-v1.2.1-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.1.jar -u https://transitfeeds.com/p/mbta/64/20200531/download -i input.zip -e input -o output
- name: Generate javadoc
run: ./gradlew aggregateJavadocs
- name: Persist snapshot
- name: Persist jar
uses: actions/upload-artifact@v2
with:
name: v1.2.1-SNAPSHOT
path: application/cli-app/build/libs/gtfs-validator-v1.2.1-SNAPSHOT.jar
name: v1.2.1
path: application/cli-app/build/libs/gtfs-validator-v1.2.1.jar
- name: Persist test report
uses: actions/upload-artifact@v2
with:
name: v1.2.1-SNAPSHOT_tests
name: v1.2.1_tests
path: build/reports/allTests/
- name: Persist javadoc
uses: actions/upload-artifact@v2
with:
name: v1.2.1-SNAPSHOT_javadoc
name: v1.2.1_javadoc
path: build/docs/javadoc/
2 changes: 1 addition & 1 deletion adapter/exporter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
}

group 'org.mobilitydata'
version '1.2.1-SNAPSHOT'
version '1.2.1'

sourceCompatibility = JavaVersion.VERSION_11

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.2.1-SNAPSHOT'
version '1.2.1'

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.2.1-SNAPSHOT'
version '1.2.1'

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.2.1-SNAPSHOT'
version '1.2.1'

sourceCompatibility = JavaVersion.VERSION_11

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

group 'org.mobilitydata'
version '1.2.1-SNAPSHOT'
version '1.2.1'

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.2.1-SNAPSHOT'
version '1.2.1'

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.2.1-SNAPSHOT'
version '1.2.1'

jar {
// Add the manifest within the JAR, using gtfs-validator as the title
Expand Down
2 changes: 1 addition & 1 deletion config/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.1'

sourceCompatibility = JavaVersion.VERSION_11

Expand Down
2 changes: 1 addition & 1 deletion domain/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.1'

sourceCompatibility = JavaVersion.VERSION_11

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

group 'org.mobilitydata'
version '1.2.1-SNAPSHOT'
version '1.2.1'

sourceCompatibility = JavaVersion.VERSION_11

Expand Down

0 comments on commit 87e8670

Please sign in to comment.