2
0

chore: change module name after fork

This commit is contained in:
2024-01-15 16:17:50 +03:00
parent 825ae07315
commit 71ab3b349b
4 changed files with 14 additions and 14 deletions
+11 -11
View File
@@ -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
+1 -1
View File
@@ -1,4 +1,4 @@
module github.com/jackc/puddle/v2
module github.com/andoma-go/puddle/v2
go 1.19
+1 -1
View File
@@ -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"
)
+1 -1
View File
@@ -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"