Skip to content

Commit b5d96d7

Browse files
upgrade to use Go 1.23
Signed-off-by: Achille Roussel <[email protected]>
1 parent d51fe22 commit b5d96d7

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

README.md

+2-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# sqlrange [![Go Reference](https://pkg.go.dev/badge/github.com/achille-roussel/sqlrange.svg)](https://pkg.go.dev/github.com/achille-roussel/sqlrange)
22

3-
Library using the `database/sql` package and Go 1.22 range functions to execute
3+
Library using the `database/sql` package and Go 1.23 range functions to execute
44
queries against SQL databases.
55

66
## Installation
@@ -10,13 +10,7 @@ This package is intended to be used as a library and installed with:
1010
go get github.com/achille-roussel/sqlrange
1111
```
1212

13-
:warning: The package depends on Go 1.22 and enabling the rangefunc experiment.
14-
15-
To enable the rangefunc experiment, set the GOEXPERIMENT environment variable in
16-
the shell that executes the go commands:
17-
```sh
18-
export GOEXPERIMENT=rangefunc
19-
```
13+
:warning: The package requires Go 1.23 or later for range function support.
2014

2115
## Usage
2216

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module github.com/achille-roussel/sqlrange
22

3-
go 1.22
3+
go 1.23

0 commit comments

Comments
 (0)