diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 03b8532..8c1b2de 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -4,7 +4,7 @@ jobs: build: strategy: matrix: - version: [1.24.1] + version: [1.24.5] os: [ubuntu-latest, windows-latest, macos-latest] name: Build runs-on: ${{ matrix.os }} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 440c1ac..7bd77cf 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -15,7 +15,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: 1.24.1 + go-version: 1.24.5 - name: Build the executables run: ./mkrel.sh rpnc ${{ github.ref_name}} diff --git a/cmd/root.go b/cmd/root.go index c85ea15..66286dd 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -28,7 +28,7 @@ import ( lua "github.com/yuin/gopher-lua" ) -const VERSION string = "2.1.6" +const VERSION string = "2.1.7" const Usage string = `This is rpn, a reverse polish notation calculator cli. diff --git a/go.mod b/go.mod index ecd90f6..66c986a 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module rpn -go 1.24.1 +go 1.24.5 require ( github.com/charmbracelet/bubbles v0.21.0