mirror of
https://codeberg.org/andyscott/weather-cli.git
synced 2024-12-21 12:43:09 -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"
|
"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"`
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue