From ff5660f3c355c08371621b642d76c7a4c88836c6 Mon Sep 17 00:00:00 2001 From: Daniel Holmes Date: Sat, 15 Jun 2024 02:52:55 +0000 Subject: [PATCH] chore(go): Add warning about main branch Main branch is in a state of flux because of the partitioned cookie attribute which won't land in go until version 1.23. Added a warning to this affect as well as upped the version of go in the go.mod to 1.23 to indicate this change. --- README.md | 5 ++++- go.mod | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3aef6a4..184e7df 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,7 @@ -# sessions +# Gorilla Sessions + +> [!CAUTION] +> The main branch of this respository is in flux and being prepared for the [Go 1.23 release](https://github.com/golang/go/milestone/212). Please use released versions as per the release page. ![testing](https://github.com/gorilla/sessions/actions/workflows/test.yml/badge.svg) [![codecov](https://codecov.io/github/gorilla/sessions/branch/main/graph/badge.svg)](https://codecov.io/github/gorilla/sessions) diff --git a/go.mod b/go.mod index 64cc6a3..25a82cc 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,5 @@ module github.com/gorilla/sessions -go 1.20 +go 1.23 require github.com/gorilla/securecookie v1.1.2