From 5adc3b30abf77c0ff75d0183a0dd8ac23ce1889c Mon Sep 17 00:00:00 2001 From: Thomas von Dein Date: Sun, 5 Nov 2023 13:01:50 +0100 Subject: [PATCH] bump version --- calc.go | 5 ----- main.go | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/calc.go b/calc.go index dc6d97e..14d8e89 100644 --- a/calc.go +++ b/calc.go @@ -287,11 +287,6 @@ func (c *Calc) Eval(line string) { } // Execute a math function, check if it is defined just in case -// -// FIXME: add a loop over DoFuncall() for non-batch-only functions -// like + or * -// -// FIXME: use R{} as well? or even everywhere, while we're at it? func (c *Calc) DoFuncall(funcname string) error { var function *Funcall if c.batch { diff --git a/main.go b/main.go index c4da892..2a75403 100644 --- a/main.go +++ b/main.go @@ -30,7 +30,7 @@ import ( lua "github.com/yuin/gopher-lua" ) -const VERSION string = "2.0.0" +const VERSION string = "2.0.1" const Usage string = `This is rpn, a reverse polish notation calculator cli.