From 30f4b67538c38384ffd9a2e67267346a7e15e1c5 Mon Sep 17 00:00:00 2001 From: Thomas von Dein Date: Wed, 25 Sep 2024 18:52:47 +0200 Subject: [PATCH] bump version and add current go versions for testing --- .github/workflows/ci.yaml | 4 ++-- cfg/config.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 63210f3..df39620 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -4,12 +4,12 @@ jobs: build: strategy: matrix: - version: [1.22.1] + version: [1.20.1, 1.21.1, 1.22.1] os: [ubuntu-latest, windows-latest, macos-latest] name: Build runs-on: ${{ matrix.os }} steps: - - name: Set up Go 1.22 + - name: Set up Go ${{ matrix.version }} uses: actions/setup-go@v5 with: go-version: '${{ matrix.version }}' diff --git a/cfg/config.go b/cfg/config.go index f6e891e..9e89adb 100644 --- a/cfg/config.go +++ b/cfg/config.go @@ -29,7 +29,7 @@ import ( ) const DefaultSeparator string = `(\s\s+|\t)` -const Version string = "v1.2.0" +const Version string = "v1.2.1" const MAXPARTS = 2 var DefaultLoadPath = os.Getenv("HOME") + "/.config/tablizer/lisp"