Skip to content

Commit

Permalink
Refactor: Move unidbpatch and mapsource Packages into util Folder (#300)
Browse files Browse the repository at this point in the history
* refactor: move unidbpatch and mapsource packages into util folder

* docs: changelog
  • Loading branch information
wangyoucao577 authored Apr 23, 2020
1 parent 8d4d5bc commit faab967
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG-FORK.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
# Unreleased
Changes from v10.2.0
- Feature:
- ADDED **HTTP API** `annotation/ways` in OSRM route response after `osrm-ranking` process(retrieve `annotation/ways` from `annotation/nodes`) [#296](https://github.com/Telenav/osrm-backend/pull/296)
- ADDED **HTTP API** `annotation/ways` in OSRM route response after `osrm-ranking` process(retrieve `annotation/ways` from `annotation/nodes`) [#296](https://github.com/Telenav/osrm-backend/pull/296)
- CHANGED for internal refactoring, moved `unidbpatch` and `mapsource` packages into `integration/util` folder [#300](https://github.com/Telenav/osrm-backend/pull/300)
- Bugfix:
- CHANGED `osrm-ranking` parsing of OSRM route response to compatible with `string` array `annotation/nodes` [#296](https://github.com/Telenav/osrm-backend/pull/296)
- Performance:
Expand Down
2 changes: 1 addition & 1 deletion integration/cmd/historicalspeed-timezone-builder/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"flag"
"fmt"

"github.com/Telenav/osrm-backend/integration/mapsource"
"github.com/Telenav/osrm-backend/integration/util/mapsource"
)

var flags struct {
Expand Down
2 changes: 1 addition & 1 deletion integration/cmd/historicalspeed-timezone-builder/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"
"time"

"github.com/Telenav/osrm-backend/integration/mapsource"
"github.com/Telenav/osrm-backend/integration/util/mapsource"
"github.com/qedus/osmpbf"

"github.com/golang/glog"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"time"

"github.com/Telenav/osrm-backend/integration/unidbpatch"
"github.com/Telenav/osrm-backend/integration/util/unidbpatch"
"github.com/golang/glog"
"github.com/qedus/osmpbf"
)
Expand Down
2 changes: 1 addition & 1 deletion integration/cmd/wayid2nodeid-extractor/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"flag"
"fmt"

"github.com/Telenav/osrm-backend/integration/mapsource"
"github.com/Telenav/osrm-backend/integration/util/mapsource"
)

var flags struct {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ import (
"strings"
"time"

"github.com/Telenav/osrm-backend/integration/mapsource"
"github.com/Telenav/osrm-backend/integration/util/mapsource"

"github.com/Telenav/osrm-backend/integration/unidbpatch"
"github.com/Telenav/osrm-backend/integration/util/unidbpatch"

"github.com/qedus/osmpbf"
)
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit faab967

Please sign in to comment.