From ce356c79577a7cbb8839ba045339e1795e53b873 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6ran=20Karl?= <3951388+JoeKar@users.noreply.github.com> Date: Wed, 1 Jan 2025 11:31:46 +0100 Subject: [PATCH] Build: set 1.19 as minimum supported Go version --- .github/workflows/test.yaml | 2 +- README.md | 2 +- go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 7740429e..63034e6a 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -4,7 +4,7 @@ jobs: test: strategy: matrix: - go-version: [1.17.x, 1.23.x] + go-version: [1.19.x, 1.23.x] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: diff --git a/README.md b/README.md index 0a7f9f21..6f0cc390 100644 --- a/README.md +++ b/README.md @@ -162,7 +162,7 @@ Without these tools installed, micro will use an internal clipboard for copy and If your operating system does not have a binary release, but does run Go, you can build from source. -Make sure that you have Go version 1.17 or greater and Go modules are enabled. +Make sure that you have Go version 1.19 or greater and Go modules are enabled. ``` git clone https://github.com/zyedidia/micro diff --git a/go.mod b/go.mod index f0315223..ef9bad2e 100644 --- a/go.mod +++ b/go.mod @@ -38,4 +38,4 @@ replace github.com/mattn/go-runewidth => github.com/zyedidia/go-runewidth v0.0.1 replace layeh.com/gopher-luar v1.0.11 => github.com/layeh/gopher-luar v1.0.11 -go 1.17 +go 1.19