From 0f84e656c2abc4f442fc3efb97aa79a252f4aba2 Mon Sep 17 00:00:00 2001 From: Erik Dubbelboer Date: Fri, 23 Aug 2024 21:56:27 +0200 Subject: [PATCH] Remove support for go 1.19 and 1.20, and add support for 1.23 (#1837) --- .github/workflows/test.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 731b456..0ab885b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - go-version: [1.19.x, 1.20.x, 1.21.x, 1.22.x] + go-version: [1.21.x, 1.22.x, 1.23.x] os: [ubuntu-latest, macos-latest, windows-latest, macos-14] runs-on: ${{ matrix.os }} steps: diff --git a/README.md b/README.md index cbdb9de..f43ea6d 100644 --- a/README.md +++ b/README.md @@ -600,7 +600,7 @@ This is an **unsafe** way, the result string and `[]byte` buffer share the same * *Which GO versions are supported by fasthttp?* - Go 1.18.x. Older versions won't be supported. + Go 1.21.x and newer. Older versions might work, but won't officially be supported. * *Please provide real benchmark data and server information*