Skip to content

Commit 9ac0771

Browse files
committed
Release v10.11.2 (release.sh)
1 parent d2221a3 commit 9ac0771

File tree

6 files changed

+13
-6
lines changed

6 files changed

+13
-6
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ but works with PostgreSQL, MySQL, and SQLite.
88

99
# Changelog
1010

11+
## v10.11.2
12+
13+
- Improved memory allocation when working with multi-byte characters in `appendRune` ([#1988](https://github.com/go-pg/pg/pull/1988))
14+
- Added `ToURL` to `*Options` ([#1934](https://github.com/go-pg/pg/pull/1934))
15+
16+
Thank you @dillonstreator and @MateusVeloso!
17+
1118
## v10.11.1
1219

1320
- Fixed bug with how cancelled contexts are handled in SingleConnPool connections ([#1981](https://github.com/go-pg/pg/pull/1981))

extra/pgdebug/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ go 1.15
44

55
replace github.com/go-pg/pg/v10 => ../..
66

7-
require github.com/go-pg/pg/v10 v10.11.1
7+
require github.com/go-pg/pg/v10 v10.11.2

extra/pgotel/example/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ replace github.com/go-pg/pg/v10 => ../../..
77
replace github.com/go-pg/pg/extra/pgotel/v10 => ../
88

99
require (
10-
github.com/go-pg/pg/extra/pgotel/v10 v10.11.1
11-
github.com/go-pg/pg/v10 v10.11.1
10+
github.com/go-pg/pg/extra/pgotel/v10 v10.11.2
11+
github.com/go-pg/pg/v10 v10.11.2
1212
go.opentelemetry.io/otel v1.0.0
1313
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.0.0
1414
go.opentelemetry.io/otel/sdk v1.0.0

extra/pgotel/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.15
55
replace github.com/go-pg/pg/v10 => ../..
66

77
require (
8-
github.com/go-pg/pg/v10 v10.11.1
8+
github.com/go-pg/pg/v10 v10.11.2
99
go.opentelemetry.io/otel v1.0.0
1010
go.opentelemetry.io/otel/trace v1.0.0
1111
)

extra/pgsegment/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.15
55
replace github.com/go-pg/pg/v10 => ../..
66

77
require (
8-
github.com/go-pg/pg/v10 v10.11.1
8+
github.com/go-pg/pg/v10 v10.11.2
99
github.com/klauspost/cpuid/v2 v2.0.9 // indirect
1010
github.com/segmentio/encoding v0.2.21
1111
)

version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ package pg
22

33
// Version is the current release version.
44
func Version() string {
5-
return "10.11.1"
5+
return "10.11.2"
66
}

0 commit comments

Comments
 (0)