Skip to content

Commit

Permalink
Release v0.7.1
Browse files Browse the repository at this point in the history
change release branches to folder strategy

Closes #359
  • Loading branch information
TheGreatRefrigerator committed Jun 11, 2021
1 parent 0737382 commit 45e58c5
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ branches:
only:
- master
- development
- /^release-v.*$/ # this should check release-v* branches
- /^release\/v.*$/
script:
- npm install -g grunt-cli
- npm install
Expand Down
2 changes: 1 addition & 1 deletion app/components/ors-navigation/ors-nav.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ angular
if ($location.path() === "/") {
ctrl.activeMenu = "/directions";
} else ctrl.activeMenu = $location.path();
ctrl.version = "0.7.0";
ctrl.version = "0.7.1";
}
],
$routeConfig: [
Expand Down
2 changes: 1 addition & 1 deletion app/infrastructure/ors-importexport-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ angular
// create a simple Course TCX file (MARQ24)
// see https://www8.garmin.com/xmlschemas/TrainingCenterDatabasev2.xsd
let toTcx = (name, speedInKmPerH) => {
let version = "0.7.0";
let version = "0.7.1";
let pointInformation =
orsRouteService.data.features[orsRouteService.getCurrentRouteIdx()]
.point_information;
Expand Down
2 changes: 1 addition & 1 deletion app/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
*|------------------------------------------------------------------------------------*/
/**
* @author: Amandus Butzer, amandus@openrouteservice.org, Timothy Ellersiek, timothy@openrouteservice.org
* @version: 0.7.0
* @version: 0.7.1
*/
(function(searchString, position) {
fetchData().then(bootstrapApplication);
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "openrouteservice.org",
"description": "angular version of openrouteservice.org",
"version": "0.7.0",
"version": "0.7.1",
"homepage": "http://www.heigit.org",
"license": "ISC",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '3'
services:
ors-classic-maps:
container_name: ors-maps
image: ors-classic-maps:v0.7.0
image: ors-classic-maps:v0.7.1
ports:
- 8035:3035
- 3005:3005
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "maps.openrouteservice.org",
"version": "0.7.0",
"version": "0.7.1",
"repository": {
"type": "git",
"url": "https://github.com/GIScience/openrouteservice-app.git"
Expand Down

0 comments on commit 45e58c5

Please sign in to comment.