Skip to content

Commit f998d8f

Browse files
authored
Revert the minimum required Go version to 1.21 (#1405)
* Revert the minimum required Go version to 1.21 * Update README
1 parent b352f6e commit f998d8f

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/run-tests-cloud.yml

-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ jobs:
2222
matrix:
2323
go:
2424
- "1.23"
25-
- "1.22"
2625
steps:
2726
- name: Check Out Code
2827
uses: actions/checkout@v3

.github/workflows/run-tests-head.yml

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919
matrix:
2020
go:
2121
- "1.23"
22-
- "1.22"
2322
steps:
2423
- uses: actions/checkout@main
2524

.github/workflows/run-tests.yml

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
go:
2121
- "1.23"
2222
- "1.22"
23+
- "1.21"
2324
clickhouse: # https://github.com/ClickHouse/ClickHouse/blob/master/SECURITY.md#scope-and-supported-versions
2425
- "24.8"
2526
- "24.7"

README.md

+8-7
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,14 @@ The client is tested against the currently [supported versions](https://github.c
4040

4141
## Supported Golang Versions
4242

43-
| Client Version | Golang Versions |
44-
|----------------|-----------------|
45-
| => 2.0 <= 2.2 | 1.17, 1.18 |
46-
| >= 2.3 | 1.18.4+, 1.19 |
47-
| >= 2.14 | 1.20, 1.21 |
48-
| >= 2.19 | 1.21, 1.22 |
49-
| >= 2.28 | 1.22, 1.23 |
43+
| Client Version | Golang Versions |
44+
|----------------|------------------|
45+
| => 2.0 <= 2.2 | 1.17, 1.18 |
46+
| >= 2.3 | 1.18.4+, 1.19 |
47+
| >= 2.14 | 1.20, 1.21 |
48+
| >= 2.19 | 1.21, 1.22 |
49+
| >= 2.28 | 1.22, 1.23 |
50+
| >= 2.29 | 1.21, 1.22, 1.23 |
5051

5152
## Documentation
5253

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/ClickHouse/clickhouse-go/v2
22

3-
go 1.22
3+
go 1.21
44

55
require (
66
github.com/ClickHouse/ch-go v0.61.5

0 commit comments

Comments
 (0)