Skip to content

Commit ed8ee92

Browse files
committed
* bumped up golang version
* updated CHANGELOG.md * removed unnecessary go versions in github actions
1 parent d7e4284 commit ed8ee92

File tree

4 files changed

+17
-12
lines changed

4 files changed

+17
-12
lines changed

.github/workflows/main.yaml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,16 @@ jobs:
2222
# - 1.12 doesn't have errors pkg
2323
- "1.13"
2424
- "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
2828
- "1.18"
2929
- "1.19"
30-
- "1.20"
31-
- "1.21"
30+
# - "1.20" is equivalent to 1.19
31+
# - "1.21" is equivalent to 1.19
3232
- "1.22"
3333
- "1.23"
34+
- "1.24"
3435
os:
3536
- ubuntu-latest
3637
# - macos-latest
@@ -85,7 +86,7 @@ jobs:
8586
--health-retries 5
8687
strategy:
8788
matrix:
88-
go-version: ["1.24"]
89+
go-version: ["1.25"]
8990
os:
9091
- ubuntu-latest
9192
mongodb-version:
@@ -147,7 +148,7 @@ jobs:
147148
uses: actions/checkout@v4
148149
- uses: actions/setup-go@v4
149150
with:
150-
go-version: "1.24"
151+
go-version: "1.25"
151152
- name: golangci-lint
152153
uses: golangci/golangci-lint-action@v4
153154
with:

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,15 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

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.
913

1014
### Changes
1115

12-
- Bumped test up to go1.24.
16+
- Bumped test up to go1.25.
1317

1418
## [2.0.0] - 2024-09-05
1519

sh/go.test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ gotest() {
2828
output=$(go test -race -mod=readonly $(golist) "$@" 2>&1)
2929
exit_code=$?
3030
if [ $exit_code -ne 0 ]; then
31-
local result="go test failed for driver: $driver
31+
output="go test failed for driver: $driver
3232
Command: go test -race -mod=readonly $(golist) $@
3333
Output:
3434
$output"
35-
echo "$result"
3635
fi
36+
echo "$output"
3737
fi
3838

3939
cd $ROOT

trm/context.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ type CtxManager interface {
2525

2626
// СtxManager is old name with first non-ASCII character.
2727
// 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.
2929
type СtxManager = CtxManager

0 commit comments

Comments
 (0)