diff --git a/README.md b/README.md index 0ad07ec..4f5f3ef 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -[![](https://godoc.org/github.com/jackc/puddle?status.svg)](https://godoc.org/github.com/jackc/puddle) -![Build Status](https://github.com/jackc/puddle/actions/workflows/ci.yml/badge.svg) +[![](https://godoc.org/github.com/andoma-go/puddle?status.svg)](https://godoc.org/github.com/andoma-go/puddle) +![Build Status](https://github.com/andoma-go/puddle/actions/workflows/ci.yml/badge.svg) # Puddle @@ -13,11 +13,11 @@ own. ## Features -* Acquire cancellation via context standard library -* Statistics API for monitoring pool pressure -* No dependencies outside of standard library and golang.org/x/sync -* High performance -* 100% test coverage of reachable code +- Acquire cancellation via context standard library +- Statistics API for monitoring pool pressure +- No dependencies outside of standard library and golang.org/x/sync +- High performance +- 100% test coverage of reachable code ## Example Usage @@ -29,7 +29,7 @@ import ( "log" "net" - "github.com/jackc/puddle/v2" + "github.com/andoma-go/puddle/v2" ) func main() { @@ -67,9 +67,9 @@ func main() { Puddle is stable and feature complete. -* Bug reports and fixes are welcome. -* New features will usually not be accepted if they can be feasibly implemented in a wrapper. -* Performance optimizations will usually not be accepted unless the performance issue rises to the level of a bug. +- Bug reports and fixes are welcome. +- New features will usually not be accepted if they can be feasibly implemented in a wrapper. +- Performance optimizations will usually not be accepted unless the performance issue rises to the level of a bug. ## Supported Go Versions diff --git a/go.mod b/go.mod index b66cc9c..4c1af64 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/jackc/puddle/v2 +module github.com/andoma-go/puddle/v2 go 1.19 diff --git a/pool.go b/pool.go index c8edc0f..aa183b0 100644 --- a/pool.go +++ b/pool.go @@ -7,7 +7,7 @@ import ( "sync/atomic" "time" - "github.com/jackc/puddle/v2/internal/genstack" + "github.com/andoma-go/puddle/v2/internal/genstack" "golang.org/x/sync/semaphore" ) diff --git a/pool_test.go b/pool_test.go index 27f9079..bd4e0a4 100644 --- a/pool_test.go +++ b/pool_test.go @@ -14,7 +14,7 @@ import ( "testing" "time" - "github.com/jackc/puddle/v2" + "github.com/andoma-go/puddle/v2" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "golang.org/x/sync/semaphore"