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