Update version info

This commit is contained in:
Andrew Scott 2022-09-03 01:07:24 -04:00
parent a95a4b97bb
commit 03f023e54b
Signed by: a
GPG key ID: 3EB62D0BBB8DB381
2 changed files with 3 additions and 3 deletions

View file

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

View file

@ -16,10 +16,10 @@ func mainMenu(app *Application) {
fmt.Println("================================================")
fmt.Printf("New in version %s:\n", app.Version)
fmt.Println(" - Minor bugfixes")
fmt.Println("New in version 1.0.0:")
fmt.Println(" - Search by zip code")
fmt.Println(" - Search by city")
fmt.Println("New in version 0.3.0")
fmt.Println(" - Advanced option: Get historical data")
mainMenuLoop(app)
}