Bump version string and update news

This commit is contained in:
Andrew Scott 2022-08-06 22:23:13 -04:00
parent 0441112a60
commit 83aee62c81
Signed by: a
GPG key ID: 3EB62D0BBB8DB381
2 changed files with 5 additions and 6 deletions

View file

@ -10,7 +10,7 @@ import (
"google.golang.org/grpc/credentials/insecure" "google.golang.org/grpc/credentials/insecure"
) )
const version string = "0.2.0" const version string = "0.3.0"
type Weather struct { type Weather struct {
Temp float32 `json:"temp"` Temp float32 `json:"temp"`

View file

@ -16,11 +16,10 @@ func mainMenu(app *Application) {
fmt.Println("=====================================================") fmt.Println("=====================================================")
fmt.Printf("New in version %s:\n", app.Version) fmt.Printf("New in version %s:\n", app.Version)
fmt.Println(" - Advanced option: Get historical data back to 1972") fmt.Println(" - Advanced option: 'Get historical data' fully functional")
fmt.Println("New in version 0.1.0") fmt.Println("New in version 0.2.0")
fmt.Println(" - Default option: Automatically determine location") fmt.Println(" - Added gRPC back end for historical data")
fmt.Println(" - Advanced option: Enter exact location for anywhere in the world") fmt.Println(" - Option to search historical data added to UI")
fmt.Println(" - Advanced option: Change back and forth between imperial and metric units of measurement")
var option string var option string
// Menu loop // Menu loop