mirror of
https://codeberg.org/andyscott/weather-cli.git
synced 2024-11-08 05:50:51 -05:00
Bump version string and update news
This commit is contained in:
parent
0441112a60
commit
83aee62c81
2 changed files with 5 additions and 6 deletions
|
@ -10,7 +10,7 @@ import (
|
|||
"google.golang.org/grpc/credentials/insecure"
|
||||
)
|
||||
|
||||
const version string = "0.2.0"
|
||||
const version string = "0.3.0"
|
||||
|
||||
type Weather struct {
|
||||
Temp float32 `json:"temp"`
|
||||
|
|
|
@ -16,11 +16,10 @@ func mainMenu(app *Application) {
|
|||
fmt.Println("=====================================================")
|
||||
|
||||
fmt.Printf("New in version %s:\n", app.Version)
|
||||
fmt.Println(" - Advanced option: Get historical data back to 1972")
|
||||
fmt.Println("New in version 0.1.0")
|
||||
fmt.Println(" - Default option: Automatically determine location")
|
||||
fmt.Println(" - Advanced option: Enter exact location for anywhere in the world")
|
||||
fmt.Println(" - Advanced option: Change back and forth between imperial and metric units of measurement")
|
||||
fmt.Println(" - Advanced option: 'Get historical data' fully functional")
|
||||
fmt.Println("New in version 0.2.0")
|
||||
fmt.Println(" - Added gRPC back end for historical data")
|
||||
fmt.Println(" - Option to search historical data added to UI")
|
||||
|
||||
var option string
|
||||
// Menu loop
|
||||
|
|
Loading…
Reference in a new issue