Skip to content

Commit 8dba35e

Browse files
committed
bump version
Signed-off-by: Daniel Stamer <[email protected]>
1 parent 3b22dab commit 8dba35e

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

cmd/trip.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,12 @@ var tripCmd = &cobra.Command{
123123
fmt.Printf("%s", t.NextStop)
124124
case "PROGRESS":
125125
fmt.Printf("%s", t.Progress)
126+
case "ARRIVING":
127+
fmt.Printf("%s", t.TimeToArrival)
128+
case "REMAINING DISTANCE":
129+
fmt.Printf("%s", t.RemainingDistance)
130+
case "ARRIVAL TRACK":
131+
fmt.Printf("%s", t.ArrivalTrack)
126132
default:
127133
fail(errors.New("unknown filter field"))
128134
}

cmd/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
)
88

99
const (
10-
version = "0.0.1"
10+
version = "0.0.2"
1111
)
1212

1313
var versionCmd = &cobra.Command{

0 commit comments

Comments
 (0)