From 2b36a5e96cd08b93001383c2d4c43d00f1a4f859 Mon Sep 17 00:00:00 2001 From: Viktor Danov Date: Tue, 20 Jul 2021 23:10:16 +0300 Subject: [PATCH] update version --- main.go | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/main.go b/main.go index 52c8713..f76d2aa 100644 --- a/main.go +++ b/main.go @@ -4,11 +4,6 @@ import ( "context" "errors" "fmt" - "github.com/alexflint/go-arg" - "github.com/antlr/antlr4/runtime/Go/antlr" - "github.com/peterh/liner" - "github.com/thecodeteam/goodbye" - "github.com/viktordanov/abacus/parser" "io" "io/ioutil" "log" @@ -16,6 +11,12 @@ import ( "path/filepath" "regexp" "strings" + + "github.com/alexflint/go-arg" + "github.com/antlr/antlr4/runtime/Go/antlr" + "github.com/peterh/liner" + "github.com/thecodeteam/goodbye" + "github.com/viktordanov/abacus/parser" ) var ( @@ -56,7 +57,7 @@ type args struct { } func (args) Version() string { - return "v1.2.2\n" + return "v1.2.2a\n" } func (args) Description() string { return "abacus - a simple interactive calculator CLI with support for variables, lambdas, comparison checks, and math functions\n"