Skip to content

Commit

Permalink
Merge pull request #596 from afischerdev/new-apk
Browse files Browse the repository at this point in the history
Prepare new release 1.7.2
  • Loading branch information
afischerdev committed Jul 20, 2023
2 parents ff73608 + f14b879 commit cabdea1
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/gradle-publish.yml
Expand Up @@ -4,7 +4,7 @@
name: Gradle Package

on:

workflow_dispatch:
release:
types: [created]

Expand All @@ -24,7 +24,7 @@ jobs:
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'
distribution: 'temurin'
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }} # location for the settings.xml file

Expand All @@ -38,8 +38,8 @@ jobs:
ORG_GRADLE_PROJECT_RELEASE_STORE_FILE: ${{ secrets.BROUTER_KEYSTORE_FILE }}
ORG_GRADLE_PROJECT_RELEASE_KEY_ALIAS: ${{ secrets.BROUTER_KEY_ALIAS }}
ORG_GRADLE_PROJECT_RELEASE_KEY_PASSWORD: ${{ secrets.BROUTER_KEY_PASSWORD }}
ORG_GRADLE_PROJECT_RELEASE_STORE_PASSWORD: ${{ secrets.BROUTER_STORE_PASSWORD }}
run: gradle build
ORG_GRADLE_PROJECT_RELEASE_STORE_PASSWORD: ${{ secrets.BROUTER_STORE_PASSWORD }}
run: gradle build bundle

# The USERNAME and TOKEN need to correspond to the credentials environment variables used in
# the publishing section of your build.gradle
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'zulu'
distribution: 'temurin'
cache: gradle
- name: Create local.properties
run: touch local.properties
Expand Down
4 changes: 2 additions & 2 deletions brouter-core/src/main/java/btools/router/OsmTrack.java
Expand Up @@ -36,8 +36,8 @@
import btools.util.StringUtils;

public final class OsmTrack {
final public static String version = "1.7.2-beta-1";
final public static String versionDate = "12072023+";
final public static String version = "1.7.2";
final public static String versionDate = "19072023";

// csv-header-line
private static final String MESSAGES_HEADER = "Longitude\tLatitude\tElevation\tDistance\tCostPerKm\tElevCost\tTurnCost\tNodeCost\tInitialCost\tWayTags\tNodeTags\tTime\tEnergy";
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -22,7 +22,7 @@ allprojects {
// app: build.gradle (versionCode only)
// OsmTrack (version and versionDate)
// docs revisions.md (version and versionDate)
project.version "1.7.2-beta-1"
project.version "1.7.2"
group 'org.btools'

repositories {
Expand Down
8 changes: 7 additions & 1 deletion docs/revisions.md
Expand Up @@ -2,7 +2,13 @@

(ZIP-Archives including APK, readme + profiles)

### [brouter-1.7.1.zip](../brouter_bin/brouter-1.7.1.zip) (current revision, 12.07.2023)
### [brouter-1.7.2.zip](../brouter_bin/brouter-1.7.2.zip) (current revision, 19.07.2023)

- Re-index Json output
Note: This is different to releases 1.7.0 and 1.7.1. It is recommended to use the current version to avoid breaks in voice hint output for GeoJson.


### [brouter-1.7.1.zip](../brouter_bin/brouter-1.7.1.zip) (12.07.2023)

Android

Expand Down

0 comments on commit cabdea1

Please sign in to comment.