File tree Expand file tree Collapse file tree 4 files changed +17
-12
lines changed Expand file tree Collapse file tree 4 files changed +17
-12
lines changed Original file line number Diff line number Diff line change @@ -22,15 +22,16 @@ jobs:
22
22
# - 1.12 doesn't have errors pkg
23
23
- " 1.13"
24
24
- " 1.14"
25
- - " 1.15"
26
- - " 1.16"
27
- - " 1.17"
25
+ # - "1.15" is equivalent to 1.14
26
+ # - "1.16" is equivalent to 1.14
27
+ # - "1.17" is equivalent to 1.14
28
28
- " 1.18"
29
29
- " 1.19"
30
- - " 1.20"
31
- - " 1.21"
30
+ # - "1.20" is equivalent to 1.19
31
+ # - "1.21" is equivalent to 1.19
32
32
- " 1.22"
33
33
- " 1.23"
34
+ - " 1.24"
34
35
os :
35
36
- ubuntu-latest
36
37
# - macos-latest
85
86
--health-retries 5
86
87
strategy :
87
88
matrix :
88
- go-version : ["1.24 "]
89
+ go-version : ["1.25 "]
89
90
os :
90
91
- ubuntu-latest
91
92
mongodb-version :
@@ -147,7 +148,7 @@ jobs:
147
148
uses : actions/checkout@v4
148
149
- uses : actions/setup-go@v4
149
150
with :
150
- go-version : " 1.24 "
151
+ go-version : " 1.25 "
151
152
- name : golangci-lint
152
153
uses : golangci/golangci-lint-action@v4
153
154
with :
Original file line number Diff line number Diff line change @@ -5,11 +5,15 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
6
6
and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
7
7
8
- ## [ 2.0.1] - 2025-03-19
8
+ ## [ 2.0.1] - 2025-08-23
9
+
10
+ ### Fixed
11
+
12
+ - Renamed СtxManager to CtxManager without "С" cyrillic letter.
9
13
10
14
### Changes
11
15
12
- - Bumped test up to go1.24 .
16
+ - Bumped test up to go1.25 .
13
17
14
18
## [ 2.0.0] - 2024-09-05
15
19
Original file line number Diff line number Diff line change @@ -28,12 +28,12 @@ gotest() {
28
28
output=$( go test -race -mod=readonly $( golist) " $@ " 2>&1 )
29
29
exit_code=$?
30
30
if [ $exit_code -ne 0 ]; then
31
- local result =" go test failed for driver: $driver
31
+ output =" go test failed for driver: $driver
32
32
Command: go test -race -mod=readonly $( golist) $@
33
33
Output:
34
34
$output "
35
- echo " $result "
36
35
fi
36
+ echo " $output "
37
37
fi
38
38
39
39
cd $ROOT
Original file line number Diff line number Diff line change @@ -25,5 +25,5 @@ type CtxManager interface {
25
25
26
26
// СtxManager is old name with first non-ASCII character.
27
27
// Deprecated: Type name contains first non-ASCII character.
28
- // Type is safed in term of backward compatibility, use above CtxManager instead.
28
+ // Type is safed in terms of backward compatibility, use above CtxManager instead.
29
29
type СtxManager = CtxManager
You can’t perform that action at this time.
0 commit comments