Skip to content

Commit ff97004

Browse files
committedSep 13, 2013
Change License Header
1 parent 9786892 commit ff97004

15 files changed

+48
-26
lines changed
 

‎AUTHORS

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# This is the official list of Go-MySQL-Driver authors for copyright purposes.
2+
3+
# If you are submitting a patch, please add your name or the name of the
4+
# organization which holds the copyright to this list in alphabetical order.
5+
6+
# Names should be added to this file as
7+
# Name <email address>
8+
# The email address is not required for organizations.
9+
# Please keep the list sorted.
10+
11+
12+
# Individual Persons
13+
14+
Arne Hormann <arnehormann at gmail.com>
15+
Hanno Braun <mail at hannobraun.com>
16+
James Harr <james.harr at gmail.com>
17+
Julien Schmidt <go-sql-driver at julienschmidt.com>
18+
Lucas Liu <extrafliu at gmail.com>
19+
Luke Scott <luke at webconnex.com>
20+
Michael Woolnough <michael.woolnough at gmail.com>
21+
Nicola Peduzzi <thenikso at gmail.com>
22+
Xiaobing Jiang <s7v7nislands at gmail.com>
23+
24+
25+
# Organizations
26+
27+
Google Inc.

‎buffer.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// Go MySQL Driver - A MySQL-Driver for Go's database/sql package
22
//
3-
// Copyright 2013 Julien Schmidt. All rights reserved.
4-
// http://www.julienschmidt.com
3+
// Copyright 2013 The Go-MySQL-Driver Authors. All rights reserved.
54
//
65
// This Source Code Form is subject to the terms of the Mozilla Public
76
// License, v. 2.0. If a copy of the MPL was not distributed with this file,

‎connection.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// Go MySQL Driver - A MySQL-Driver for Go's database/sql package
22
//
3-
// Copyright 2012 Julien Schmidt. All rights reserved.
4-
// http://www.julienschmidt.com
3+
// Copyright 2012 The Go-MySQL-Driver Authors. All rights reserved.
54
//
65
// This Source Code Form is subject to the terms of the Mozilla Public
76
// License, v. 2.0. If a copy of the MPL was not distributed with this file,

‎const.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// Go MySQL Driver - A MySQL-Driver for Go's database/sql package
22
//
3-
// Copyright 2012 Julien Schmidt. All rights reserved.
4-
// http://www.julienschmidt.com
3+
// Copyright 2012 The Go-MySQL-Driver Authors. All rights reserved.
54
//
65
// This Source Code Form is subject to the terms of the Mozilla Public
76
// License, v. 2.0. If a copy of the MPL was not distributed with this file,

‎driver.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
// Copyright 2012 Julien Schmidt. All rights reserved.
2-
// http://www.julienschmidt.com
1+
// Copyright 2012 The Go-MySQL-Driver Authors. All rights reserved.
32
//
43
// This Source Code Form is subject to the terms of the Mozilla Public
54
// License, v. 2.0. If a copy of the MPL was not distributed with this file,

‎driver_test.go

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
// Go MySQL Driver - A MySQL-Driver for Go's database/sql package
2+
//
3+
// Copyright 2013 The Go-MySQL-Driver Authors. All rights reserved.
4+
//
5+
// This Source Code Form is subject to the terms of the Mozilla Public
6+
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
7+
// You can obtain one at http://mozilla.org/MPL/2.0/.
8+
19
package mysql
210

311
import (

‎errors.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// Go MySQL Driver - A MySQL-Driver for Go's database/sql package
22
//
3-
// Copyright 2013 Julien Schmidt. All rights reserved.
4-
// http://www.julienschmidt.com
3+
// Copyright 2013 The Go-MySQL-Driver Authors. All rights reserved.
54
//
65
// This Source Code Form is subject to the terms of the Mozilla Public
76
// License, v. 2.0. If a copy of the MPL was not distributed with this file,

‎infile.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// Go MySQL Driver - A MySQL-Driver for Go's database/sql package
22
//
3-
// Copyright 2013 Julien Schmidt. All rights reserved.
4-
// http://www.julienschmidt.com
3+
// Copyright 2013 The Go-MySQL-Driver Authors. All rights reserved.
54
//
65
// This Source Code Form is subject to the terms of the Mozilla Public
76
// License, v. 2.0. If a copy of the MPL was not distributed with this file,

‎packets.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// Go MySQL Driver - A MySQL-Driver for Go's database/sql package
22
//
3-
// Copyright 2012 Julien Schmidt. All rights reserved.
4-
// http://www.julienschmidt.com
3+
// Copyright 2012 The Go-MySQL-Driver Authors. All rights reserved.
54
//
65
// This Source Code Form is subject to the terms of the Mozilla Public
76
// License, v. 2.0. If a copy of the MPL was not distributed with this file,

‎result.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// Go MySQL Driver - A MySQL-Driver for Go's database/sql package
22
//
3-
// Copyright 2012 Julien Schmidt. All rights reserved.
4-
// http://www.julienschmidt.com
3+
// Copyright 2012 The Go-MySQL-Driver Authors. All rights reserved.
54
//
65
// This Source Code Form is subject to the terms of the Mozilla Public
76
// License, v. 2.0. If a copy of the MPL was not distributed with this file,

‎rows.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// Go MySQL Driver - A MySQL-Driver for Go's database/sql package
22
//
3-
// Copyright 2012 Julien Schmidt. All rights reserved.
4-
// http://www.julienschmidt.com
3+
// Copyright 2012 The Go-MySQL-Driver Authors. All rights reserved.
54
//
65
// This Source Code Form is subject to the terms of the Mozilla Public
76
// License, v. 2.0. If a copy of the MPL was not distributed with this file,

‎statement.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// Go MySQL Driver - A MySQL-Driver for Go's database/sql package
22
//
3-
// Copyright 2012 Julien Schmidt. All rights reserved.
4-
// http://www.julienschmidt.com
3+
// Copyright 2012 The Go-MySQL-Driver Authors. All rights reserved.
54
//
65
// This Source Code Form is subject to the terms of the Mozilla Public
76
// License, v. 2.0. If a copy of the MPL was not distributed with this file,

‎transaction.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// Go MySQL Driver - A MySQL-Driver for Go's database/sql package
22
//
3-
// Copyright 2012 Julien Schmidt. All rights reserved.
4-
// http://www.julienschmidt.com
3+
// Copyright 2012 The Go-MySQL-Driver Authors. All rights reserved.
54
//
65
// This Source Code Form is subject to the terms of the Mozilla Public
76
// License, v. 2.0. If a copy of the MPL was not distributed with this file,

‎utils.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// Go MySQL Driver - A MySQL-Driver for Go's database/sql package
22
//
3-
// Copyright 2012 Julien Schmidt. All rights reserved.
4-
// http://www.julienschmidt.com
3+
// Copyright 2012 The Go-MySQL-Driver Authors. All rights reserved.
54
//
65
// This Source Code Form is subject to the terms of the Mozilla Public
76
// License, v. 2.0. If a copy of the MPL was not distributed with this file,

‎utils_test.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// Go MySQL Driver - A MySQL-Driver for Go's database/sql package
22
//
3-
// Copyright 2013 Julien Schmidt. All rights reserved.
4-
// http://www.julienschmidt.com
3+
// Copyright 2013 The Go-MySQL-Driver Authors. All rights reserved.
54
//
65
// This Source Code Form is subject to the terms of the Mozilla Public
76
// License, v. 2.0. If a copy of the MPL was not distributed with this file,

0 commit comments

Comments
 (0)
Please sign in to comment.