2
0

Bump module version to v5

This commit is contained in:
Jack Christensen
2021-12-11 13:29:03 -06:00
parent 390bd79757
commit 72cc95e4dd
151 changed files with 287 additions and 287 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ import (
"github.com/go-kit/log"
kitlevel "github.com/go-kit/log/level"
"github.com/jackc/pgx/v4"
"github.com/jackc/pgx/v5"
)
type Logger struct {
+1 -1
View File
@@ -5,7 +5,7 @@ package log15adapter
import (
"context"
"github.com/jackc/pgx/v4"
"github.com/jackc/pgx/v5"
)
// Log15Logger interface defines the subset of
+1 -1
View File
@@ -5,7 +5,7 @@ package logrusadapter
import (
"context"
"github.com/jackc/pgx/v4"
"github.com/jackc/pgx/v5"
"github.com/sirupsen/logrus"
)
+1 -1
View File
@@ -6,7 +6,7 @@ import (
"context"
"fmt"
"github.com/jackc/pgx/v4"
"github.com/jackc/pgx/v5"
)
// TestingLogger interface defines the subset of testing.TB methods used by this
+1 -1
View File
@@ -4,7 +4,7 @@ package zapadapter
import (
"context"
"github.com/jackc/pgx/v4"
"github.com/jackc/pgx/v5"
"go.uber.org/zap"
"go.uber.org/zap/zapcore"
)
+1 -1
View File
@@ -4,7 +4,7 @@ package zerologadapter
import (
"context"
"github.com/jackc/pgx/v4"
"github.com/jackc/pgx/v5"
"github.com/rs/zerolog"
)
+2 -2
View File
@@ -5,8 +5,8 @@ import (
"context"
"testing"
"github.com/jackc/pgx/v4"
"github.com/jackc/pgx/v4/log/zerologadapter"
"github.com/jackc/pgx/v5"
"github.com/jackc/pgx/v5/log/zerologadapter"
"github.com/rs/zerolog"
)