Skip to content

Commit 59a8672

Browse files
authored
all: update license info (holiman#8)
1 parent cb83489 commit 59a8672

File tree

12 files changed

+73
-2
lines changed

12 files changed

+73
-2
lines changed

v2/MIT-LICENSE.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
The MIT License (MIT)
2+
Copyright © 2014, 2015 Barry Allard
3+
4+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5+
6+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
7+
8+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

v2/binarymarshaler.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,17 @@
22
// marshalable, unionable, probability- and
33
// optimal-size-calculating Bloom filter in go
44
//
5+
// https://github.com/holiman/bloomfilter
6+
//
7+
// Original source:
58
// https://github.com/steakknife/bloomfilter
69
//
710
// Copyright © 2014, 2015, 2018 Barry Allard
11+
// Copyright © 2020 Martin Holst Swende
812
//
913
// MIT license
1014
//
15+
1116
package v2
1217

1318
import (

v2/binaryunmarshaler.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,17 @@
22
// marshalable, unionable, probability- and
33
// optimal-size-calculating Bloom filter in go
44
//
5+
// https://github.com/holiman/bloomfilter
6+
//
7+
// Original source:
58
// https://github.com/steakknife/bloomfilter
69
//
710
// Copyright © 2014, 2015, 2018 Barry Allard
11+
// Copyright © 2020 Martin Holst Swende
812
//
913
// MIT license
1014
//
15+
1116
package v2
1217

1318
import (

v2/bloomfilter.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,16 @@
22
// marshalable, unionable, probability- and
33
// optimal-size-calculating Bloom filter in go
44
//
5+
// https://github.com/holiman/bloomfilter
6+
//
7+
// Original source:
58
// https://github.com/steakknife/bloomfilter
69
//
710
// Copyright © 2014, 2015, 2018 Barry Allard
11+
// Copyright © 2020 Martin Holst Swende
812
//
913
// MIT license
1014
//
11-
// Copyright © 2020 Martin Holst Swende, continued on the work of Barry Allard
1215

1316
package v2
1417

v2/bloomfilter_test.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,17 @@
22
// marshalable, unionable, probability- and
33
// optimal-size-calculating Bloom filter in go
44
//
5+
// https://github.com/holiman/bloomfilter
6+
//
7+
// Original source:
58
// https://github.com/steakknife/bloomfilter
69
//
710
// Copyright © 2014, 2015, 2018 Barry Allard
11+
// Copyright © 2020 Martin Holst Swende
812
//
913
// MIT license
1014
//
15+
1116
package v2
1217

1318
import (

v2/conformance.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,17 @@
22
// marshalable, unionable, probability- and
33
// optimal-size-calculating Bloom filter in go
44
//
5+
// https://github.com/holiman/bloomfilter
6+
//
7+
// Original source:
58
// https://github.com/steakknife/bloomfilter
69
//
710
// Copyright © 2014, 2015, 2018 Barry Allard
11+
// Copyright © 2020 Martin Holst Swende
812
//
913
// MIT license
1014
//
15+
1116
package v2
1217

1318
import (

v2/fileio.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,17 @@
22
// marshalable, unionable, probability- and
33
// optimal-size-calculating Bloom filter in go
44
//
5+
// https://github.com/holiman/bloomfilter
6+
//
7+
// Original source:
58
// https://github.com/steakknife/bloomfilter
69
//
710
// Copyright © 2014, 2015, 2018 Barry Allard
11+
// Copyright © 2020 Martin Holst Swende
812
//
913
// MIT license
1014
//
15+
1116
package v2
1217

1318
import (

v2/fileio_test.go

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,17 @@
22
// marshalable, unionable, probability- and
33
// optimal-size-calculating Bloom filter in go
44
//
5+
// https://github.com/holiman/bloomfilter
6+
//
7+
// Original source:
58
// https://github.com/steakknife/bloomfilter
69
//
710
// Copyright © 2014, 2015, 2018 Barry Allard
8-
// Copyright © 2018, 2020 Martin Holst Swende
11+
// Copyright © 2020 Martin Holst Swende
12+
//
913
// MIT license
1014
//
15+
1116
package v2
1217

1318
import (

v2/iscompatible.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,17 @@
22
// marshalable, unionable, probability- and
33
// optimal-size-calculating Bloom filter in go
44
//
5+
// https://github.com/holiman/bloomfilter
6+
//
7+
// Original source:
58
// https://github.com/steakknife/bloomfilter
69
//
710
// Copyright © 2014, 2015, 2018 Barry Allard
11+
// Copyright © 2020 Martin Holst Swende
812
//
913
// MIT license
1014
//
15+
1116
package v2
1217

1318
// returns 0 if equal, does not compare len(b0) with len(b1)

v2/new.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,17 @@
22
// marshalable, unionable, probability- and
33
// optimal-size-calculating Bloom filter in go
44
//
5+
// https://github.com/holiman/bloomfilter
6+
//
7+
// Original source:
58
// https://github.com/steakknife/bloomfilter
69
//
710
// Copyright © 2014, 2015, 2018 Barry Allard
11+
// Copyright © 2020 Martin Holst Swende
812
//
913
// MIT license
1014
//
15+
1116
package v2
1217

1318
import (

0 commit comments

Comments
 (0)