From 010f202d27ccf172d72eee1e4367711a37b10f53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ka=CC=81roly=20Lo=CC=8Brentey?= Date: Tue, 20 Jun 2017 18:36:43 +0200 Subject: [PATCH] Update copyright years. --- LICENSE.md | 2 +- Package.swift | 2 +- sources/BigDigit.swift | 2 +- sources/BigInt.swift | 2 +- sources/BigUInt Addition.swift | 2 +- sources/BigUInt Bitwise Ops.swift | 2 +- sources/BigUInt Comparison.swift | 2 +- sources/BigUInt Data.swift | 2 +- sources/BigUInt Division.swift | 2 +- sources/BigUInt Exponentiation.swift | 2 +- sources/BigUInt GCD.swift | 2 +- sources/BigUInt Hashing.swift | 2 +- sources/BigUInt Multiplication.swift | 2 +- sources/BigUInt Prime Test.swift | 2 +- sources/BigUInt Radix Conversion.swift | 2 +- sources/BigUInt Random.swift | 2 +- sources/BigUInt Shifts.swift | 2 +- sources/BigUInt Square Root.swift | 2 +- sources/BigUInt Subtraction.swift | 2 +- sources/BigUInt.swift | 2 +- sources/Bitwise Hacks.swift | 2 +- tests/BigIntTests/BigIntTests.swift | 2 +- tests/BigIntTests/BigUIntTests.swift | 2 +- tests/BigIntTests/BitwiseTests.swift | 2 +- tests/BigIntTests/DigitsTests.swift | 2 +- tests/BigIntTests/ProfileTests.swift | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/LICENSE.md b/LICENSE.md index 7062a94..18cefd1 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,5 +1,5 @@ -Copyright (c) 2016 Károly Lőrentey +Copyright (c) 2016-2017 Károly Lőrentey Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Package.swift b/Package.swift index 77b2087..82204e7 100644 --- a/Package.swift +++ b/Package.swift @@ -3,7 +3,7 @@ // BigInt // // Created by Károly Lőrentey on 2016-01-12. -// Copyright © 2016 Károly Lőrentey. +// Copyright © 2016-2017 Károly Lőrentey. // import PackageDescription diff --git a/sources/BigDigit.swift b/sources/BigDigit.swift index 6baed65..82faaab 100644 --- a/sources/BigDigit.swift +++ b/sources/BigDigit.swift @@ -3,7 +3,7 @@ // BigInt // // Created by Károly Lőrentey on 2015-12-27. -// Copyright © 2016 Károly Lőrentey. +// Copyright © 2016-2017 Károly Lőrentey. // internal protocol BigDigit: UnsignedInteger, BitwiseOperations { diff --git a/sources/BigInt.swift b/sources/BigInt.swift index 3a58675..f2de1c9 100644 --- a/sources/BigInt.swift +++ b/sources/BigInt.swift @@ -3,7 +3,7 @@ // BigInt // // Created by Károly Lőrentey on 2015-12-27. -// Copyright © 2016 Károly Lőrentey. +// Copyright © 2016-2017 Károly Lőrentey. // import SipHash diff --git a/sources/BigUInt Addition.swift b/sources/BigUInt Addition.swift index 5790022..ce2b961 100644 --- a/sources/BigUInt Addition.swift +++ b/sources/BigUInt Addition.swift @@ -3,7 +3,7 @@ // BigInt // // Created by Károly Lőrentey on 2016-01-03. -// Copyright © 2016 Károly Lőrentey. +// Copyright © 2016-2017 Károly Lőrentey. // extension BigUInt { diff --git a/sources/BigUInt Bitwise Ops.swift b/sources/BigUInt Bitwise Ops.swift index 79a97a9..fd38b6f 100644 --- a/sources/BigUInt Bitwise Ops.swift +++ b/sources/BigUInt Bitwise Ops.swift @@ -3,7 +3,7 @@ // BigInt // // Created by Károly Lőrentey on 2016-01-03. -// Copyright © 2016 Károly Lőrentey. +// Copyright © 2016-2017 Károly Lőrentey. // extension BigUInt: BitwiseOperations { diff --git a/sources/BigUInt Comparison.swift b/sources/BigUInt Comparison.swift index 14fef3f..86d9785 100644 --- a/sources/BigUInt Comparison.swift +++ b/sources/BigUInt Comparison.swift @@ -3,7 +3,7 @@ // BigInt // // Created by Károly Lőrentey on 2016-01-03. -// Copyright © 2016 Károly Lőrentey. +// Copyright © 2016-2017 Károly Lőrentey. // import Foundation diff --git a/sources/BigUInt Data.swift b/sources/BigUInt Data.swift index 5644ab3..78caf3d 100644 --- a/sources/BigUInt Data.swift +++ b/sources/BigUInt Data.swift @@ -3,7 +3,7 @@ // BigInt // // Created by Károly Lőrentey on 2016-01-04. -// Copyright © 2016 Károly Lőrentey. +// Copyright © 2016-2017 Károly Lőrentey. // import Foundation diff --git a/sources/BigUInt Division.swift b/sources/BigUInt Division.swift index e4c8c64..d12d5dd 100644 --- a/sources/BigUInt Division.swift +++ b/sources/BigUInt Division.swift @@ -3,7 +3,7 @@ // BigInt // // Created by Károly Lőrentey on 2016-01-03. -// Copyright © 2016 Károly Lőrentey. +// Copyright © 2016-2017 Károly Lőrentey. // extension BigUInt { diff --git a/sources/BigUInt Exponentiation.swift b/sources/BigUInt Exponentiation.swift index 5830f3f..9827b37 100644 --- a/sources/BigUInt Exponentiation.swift +++ b/sources/BigUInt Exponentiation.swift @@ -3,7 +3,7 @@ // BigInt // // Created by Károly Lőrentey on 2016-01-03. -// Copyright © 2016 Károly Lőrentey. +// Copyright © 2016-2017 Károly Lőrentey. // extension BigUInt { diff --git a/sources/BigUInt GCD.swift b/sources/BigUInt GCD.swift index ab0d804..96d852a 100644 --- a/sources/BigUInt GCD.swift +++ b/sources/BigUInt GCD.swift @@ -3,7 +3,7 @@ // BigInt // // Created by Károly Lőrentey on 2016-01-03. -// Copyright © 2016 Károly Lőrentey. +// Copyright © 2016-2017 Károly Lőrentey. // extension BigUInt { diff --git a/sources/BigUInt Hashing.swift b/sources/BigUInt Hashing.swift index 666583b..6ce133a 100644 --- a/sources/BigUInt Hashing.swift +++ b/sources/BigUInt Hashing.swift @@ -3,7 +3,7 @@ // BigInt // // Created by Károly Lőrentey on 2016-01-03. -// Copyright © 2016 Károly Lőrentey. +// Copyright © 2016-2017 Károly Lőrentey. // import SipHash diff --git a/sources/BigUInt Multiplication.swift b/sources/BigUInt Multiplication.swift index c524af5..cf60f01 100644 --- a/sources/BigUInt Multiplication.swift +++ b/sources/BigUInt Multiplication.swift @@ -3,7 +3,7 @@ // BigInt // // Created by Károly Lőrentey on 2016-01-03. -// Copyright © 2016 Károly Lőrentey. +// Copyright © 2016-2017 Károly Lőrentey. // extension BigUInt { diff --git a/sources/BigUInt Prime Test.swift b/sources/BigUInt Prime Test.swift index c0801a5..057ec6c 100644 --- a/sources/BigUInt Prime Test.swift +++ b/sources/BigUInt Prime Test.swift @@ -3,7 +3,7 @@ // BigInt // // Created by Károly Lőrentey on 2016-01-04. -// Copyright © 2016 Károly Lőrentey. +// Copyright © 2016-2017 Károly Lőrentey. // /// The first several [prime numbers][primes]. diff --git a/sources/BigUInt Radix Conversion.swift b/sources/BigUInt Radix Conversion.swift index 11ccbe7..256f0b2 100644 --- a/sources/BigUInt Radix Conversion.swift +++ b/sources/BigUInt Radix Conversion.swift @@ -3,7 +3,7 @@ // BigInt // // Created by Károly Lőrentey on 2016-01-03. -// Copyright © 2016 Károly Lőrentey. +// Copyright © 2016-2017 Károly Lőrentey. // extension BigUInt: CustomStringConvertible { diff --git a/sources/BigUInt Random.swift b/sources/BigUInt Random.swift index 8a59de6..43266a8 100644 --- a/sources/BigUInt Random.swift +++ b/sources/BigUInt Random.swift @@ -3,7 +3,7 @@ // BigInt // // Created by Károly Lőrentey on 2016-01-04. -// Copyright © 2016 Károly Lőrentey. +// Copyright © 2016-2017 Károly Lőrentey. // import Foundation diff --git a/sources/BigUInt Shifts.swift b/sources/BigUInt Shifts.swift index 74f06a9..0a60172 100644 --- a/sources/BigUInt Shifts.swift +++ b/sources/BigUInt Shifts.swift @@ -3,7 +3,7 @@ // BigInt // // Created by Károly Lőrentey on 2016-01-03. -// Copyright © 2016 Károly Lőrentey. +// Copyright © 2016-2017 Károly Lőrentey. // extension BigUInt { diff --git a/sources/BigUInt Square Root.swift b/sources/BigUInt Square Root.swift index 6b9695a..6572ba9 100644 --- a/sources/BigUInt Square Root.swift +++ b/sources/BigUInt Square Root.swift @@ -3,7 +3,7 @@ // BigInt // // Created by Károly Lőrentey on 2016-01-03. -// Copyright © 2016 Károly Lőrentey. +// Copyright © 2016-2017 Károly Lőrentey. // //MARK: Square Root diff --git a/sources/BigUInt Subtraction.swift b/sources/BigUInt Subtraction.swift index cbf0702..e10864e 100644 --- a/sources/BigUInt Subtraction.swift +++ b/sources/BigUInt Subtraction.swift @@ -3,7 +3,7 @@ // BigInt // // Created by Károly Lőrentey on 2016-01-03. -// Copyright © 2016 Károly Lőrentey. +// Copyright © 2016-2017 Károly Lőrentey. // extension BigUInt { diff --git a/sources/BigUInt.swift b/sources/BigUInt.swift index 10f46b2..93e1271 100644 --- a/sources/BigUInt.swift +++ b/sources/BigUInt.swift @@ -3,7 +3,7 @@ // BigInt // // Created by Károly Lőrentey on 2015-12-26. -// Copyright © 2016 Károly Lőrentey. +// Copyright © 2016-2017 Károly Lőrentey. // /// An arbitary precision unsigned integer type, also known as a "big integer". diff --git a/sources/Bitwise Hacks.swift b/sources/Bitwise Hacks.swift index 357aad5..d905636 100644 --- a/sources/Bitwise Hacks.swift +++ b/sources/Bitwise Hacks.swift @@ -3,7 +3,7 @@ // BigInt // // Created by Károly Lőrentey on 2015-12-27. -// Copyright © 2016 Károly Lőrentey. +// Copyright © 2016-2017 Károly Lőrentey. // /// For all `i` less than 256, `leadingZeroesTable[i]` is the number of leading zero bits in `i`'s 8-bit representation. diff --git a/tests/BigIntTests/BigIntTests.swift b/tests/BigIntTests/BigIntTests.swift index 33e0c25..1733d3c 100644 --- a/tests/BigIntTests/BigIntTests.swift +++ b/tests/BigIntTests/BigIntTests.swift @@ -3,7 +3,7 @@ // BigIntTests // // Created by Károly Lőrentey on 2015-12-26. -// Copyright © 2016 Károly Lőrentey. +// Copyright © 2016-2017 Károly Lőrentey. // import XCTest diff --git a/tests/BigIntTests/BigUIntTests.swift b/tests/BigIntTests/BigUIntTests.swift index dbc3496..887f28d 100644 --- a/tests/BigIntTests/BigUIntTests.swift +++ b/tests/BigIntTests/BigUIntTests.swift @@ -3,7 +3,7 @@ // BigInt // // Created by Károly Lőrentey on 2015-12-27. -// Copyright © 2016 Károly Lőrentey. +// Copyright © 2016-2017 Károly Lőrentey. // import XCTest diff --git a/tests/BigIntTests/BitwiseTests.swift b/tests/BigIntTests/BitwiseTests.swift index 6f77223..b6e9824 100644 --- a/tests/BigIntTests/BitwiseTests.swift +++ b/tests/BigIntTests/BitwiseTests.swift @@ -3,7 +3,7 @@ // BigInt // // Created by Károly Lőrentey on 2015-12-27. -// Copyright © 2016 Károly Lőrentey. +// Copyright © 2016-2017 Károly Lőrentey. // import XCTest diff --git a/tests/BigIntTests/DigitsTests.swift b/tests/BigIntTests/DigitsTests.swift index 7865f70..bcdd5d8 100644 --- a/tests/BigIntTests/DigitsTests.swift +++ b/tests/BigIntTests/DigitsTests.swift @@ -3,7 +3,7 @@ // BigInt // // Created by Károly Lőrentey on 2015-12-27. -// Copyright © 2016 Károly Lőrentey. +// Copyright © 2016-2017 Károly Lőrentey. // import XCTest diff --git a/tests/BigIntTests/ProfileTests.swift b/tests/BigIntTests/ProfileTests.swift index 8b440dc..4c0ceed 100644 --- a/tests/BigIntTests/ProfileTests.swift +++ b/tests/BigIntTests/ProfileTests.swift @@ -3,7 +3,7 @@ // BigInt // // Created by Károly Lőrentey on 2015-12-31. -// Copyright © 2016 Károly Lőrentey. +// Copyright © 2016-2017 Károly Lőrentey. // import XCTest