Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v10.11.2 (release.sh) #1989

Merged
merged 1 commit into from
Nov 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ but works with PostgreSQL, MySQL, and SQLite.

# Changelog

## v10.11.2

- Improved memory allocation when working with multi-byte characters in `appendRune` ([#1988](https://github.com/go-pg/pg/pull/1988))
- Added `ToURL` to `*Options` ([#1934](https://github.com/go-pg/pg/pull/1934))

Thank you @dillonstreator and @MateusVeloso!

## v10.11.1

- Fixed bug with how cancelled contexts are handled in SingleConnPool connections ([#1981](https://github.com/go-pg/pg/pull/1981))
Expand Down
2 changes: 1 addition & 1 deletion extra/pgdebug/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ go 1.15

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

require github.com/go-pg/pg/v10 v10.11.1
require github.com/go-pg/pg/v10 v10.11.2
4 changes: 2 additions & 2 deletions extra/pgotel/example/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ replace github.com/go-pg/pg/v10 => ../../..
replace github.com/go-pg/pg/extra/pgotel/v10 => ../

require (
github.com/go-pg/pg/extra/pgotel/v10 v10.11.1
github.com/go-pg/pg/v10 v10.11.1
github.com/go-pg/pg/extra/pgotel/v10 v10.11.2
github.com/go-pg/pg/v10 v10.11.2
go.opentelemetry.io/otel v1.0.0
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.0.0
go.opentelemetry.io/otel/sdk v1.0.0
Expand Down
2 changes: 1 addition & 1 deletion extra/pgotel/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.15
replace github.com/go-pg/pg/v10 => ../..

require (
github.com/go-pg/pg/v10 v10.11.1
github.com/go-pg/pg/v10 v10.11.2
go.opentelemetry.io/otel v1.0.0
go.opentelemetry.io/otel/trace v1.0.0
)
2 changes: 1 addition & 1 deletion extra/pgsegment/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.15
replace github.com/go-pg/pg/v10 => ../..

require (
github.com/go-pg/pg/v10 v10.11.1
github.com/go-pg/pg/v10 v10.11.2
github.com/klauspost/cpuid/v2 v2.0.9 // indirect
github.com/segmentio/encoding v0.2.21
)
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ package pg

// Version is the current release version.
func Version() string {
return "10.11.1"
return "10.11.2"
}
Loading