Skip to content

Commit 06a6e5e

Browse files
committed
Moving to new org.
1 parent cbd2fa5 commit 06a6e5e

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
*Go language library to map between non-negative integers and boolean values*
44

5-
[![Test](https://github.com/willf/bitset/workflows/Test/badge.svg)](https://github.com/willf/bitset/actions?query=workflow%3ATest)
6-
[![Master Coverage Status](https://coveralls.io/repos/willf/bitset/badge.svg?branch=master&service=github)](https://coveralls.io/github/willf/bitset?branch=master)
5+
[![Test](https://github.com/bits-and-blooms/bitset/workflows/Test/badge.svg)](https://github.com/willf/bitset/actions?query=workflow%3ATest)
6+
[![Master Coverage Status](https://coveralls.io/repos/bits-and-blooms/bitset/badge.svg?branch=master&service=github)](https://coveralls.io/github/willf/bitset?branch=master)
77
[![Go Report Card](https://goreportcard.com/badge/github.com/willf/bitset)](https://goreportcard.com/report/github.com/willf/bitset)
8-
[![PkgGoDev](https://pkg.go.dev/badge/github.com/willf/bitset?tab=doc)](https://pkg.go.dev/github.com/willf/bitset?tab=doc)
8+
[![PkgGoDev](https://pkg.go.dev/badge/github.com/bits-and-blooms/bitset?tab=doc)](https://pkg.go.dev/github.com/bits-and-blooms/bitset?tab=doc)
99

1010

1111
## Description
@@ -30,7 +30,7 @@ import (
3030
"fmt"
3131
"math/rand"
3232

33-
"github.com/willf/bitset"
33+
"github.com/bits-and-blooms/bitset"
3434
)
3535

3636
func main() {
@@ -63,7 +63,7 @@ func main() {
6363

6464
As an alternative to BitSets, one should check out the 'big' package, which provides a (less set-theoretical) view of bitsets.
6565

66-
Package documentation is at: https://pkg.go.dev/github.com/willf/bitset?tab=doc
66+
Package documentation is at: https://pkg.go.dev/github.com/bits-and-blooms/bitset?tab=doc
6767

6868
## Memory Usage
6969

@@ -78,7 +78,7 @@ It is possible that a later version will match the `math/bits` return signature
7878
## Installation
7979

8080
```bash
81-
go get github.com/willf/bitset
81+
go get github.com/bits-and-blooms/bitset
8282
```
8383

8484
## Contributing

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/willf/bitset
1+
module github.com/bits-and-blooms/bitset
22

33
go 1.14

0 commit comments

Comments
 (0)