Skip to content

Commit

Permalink
Release v10.11.2 (release.sh)
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotcourant committed Nov 8, 2023
1 parent d2221a3 commit 9ac0771
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 6 deletions.
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"
}

0 comments on commit 9ac0771

Please sign in to comment.