From 1a1670076a9358694bb9854f0286f9ab9f822bca Mon Sep 17 00:00:00 2001 From: Thomas von Dein Date: Wed, 25 Sep 2024 19:20:22 +0200 Subject: [PATCH] bump version, use go 1.22 --- go.mod | 2 +- main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index 9c3c381..2a36af8 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module rpn -go 1.20 +go 1.22 require ( github.com/chzyer/readline v1.5.1 // indirect diff --git a/main.go b/main.go index 81ef074..7f7c4b4 100644 --- a/main.go +++ b/main.go @@ -30,7 +30,7 @@ import ( lua "github.com/yuin/gopher-lua" ) -const VERSION string = "2.1.0" +const VERSION string = "2.1.1" const Usage string = `This is rpn, a reverse polish notation calculator cli.