summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2020-05-05 07:46:10 +0200
committerEugen Wissner <belka@caraus.de>2020-05-05 07:46:10 +0200
commit3ce5e8153ca7f46f2211cde700d4bef9e2256695 (patch)
treeb90f6959a7611e6c1e9f920936ff1c5234d7ac91 /source
parentc68b8d1bddd61b06135324cdaed5eb8d7c74ea60 (diff)
downloadtanya-3ce5e8153ca7f46f2211cde700d4bef9e2256695.tar.gz
Update copyrights
Diffstat (limited to 'source')
-rw-r--r--source/tanya/algorithm/comparison.d2
-rw-r--r--source/tanya/algorithm/iteration.d2
-rw-r--r--source/tanya/algorithm/mutation.d2
-rw-r--r--source/tanya/algorithm/package.d2
-rw-r--r--source/tanya/algorithm/searching.d2
-rw-r--r--source/tanya/async/event/epoll.d2
-rw-r--r--source/tanya/async/event/iocp.d2
-rw-r--r--source/tanya/async/event/kqueue.d2
-rw-r--r--source/tanya/async/event/selector.d2
-rw-r--r--source/tanya/async/iocp.d2
-rw-r--r--source/tanya/async/loop.d2
-rw-r--r--source/tanya/async/package.d2
-rw-r--r--source/tanya/async/protocol.d2
-rw-r--r--source/tanya/async/transport.d2
-rw-r--r--source/tanya/async/watcher.d2
-rw-r--r--source/tanya/bitmanip.d2
-rw-r--r--source/tanya/container/array.d2
-rw-r--r--source/tanya/container/buffer.d2
-rw-r--r--source/tanya/container/entry.d2
-rw-r--r--source/tanya/container/hashtable.d2
-rw-r--r--source/tanya/container/list.d2
-rw-r--r--source/tanya/container/package.d2
-rw-r--r--source/tanya/container/set.d2
-rw-r--r--source/tanya/container/string.d2
-rw-r--r--source/tanya/conv.d2
-rw-r--r--source/tanya/format.d2
-rw-r--r--source/tanya/hash/lookup.d2
-rw-r--r--source/tanya/hash/package.d2
-rw-r--r--source/tanya/math/nbtheory.d2
-rw-r--r--source/tanya/math/package.d2
-rw-r--r--source/tanya/math/random.d2
-rw-r--r--source/tanya/net/iface.d2
-rw-r--r--source/tanya/net/inet.d2
-rw-r--r--source/tanya/net/ip.d2
-rw-r--r--source/tanya/net/package.d2
-rw-r--r--source/tanya/net/uri.d2
-rw-r--r--source/tanya/network/package.d2
-rw-r--r--source/tanya/network/socket.d2
-rw-r--r--source/tanya/range/adapter.d2
-rw-r--r--source/tanya/range/array.d2
-rw-r--r--source/tanya/range/package.d2
-rw-r--r--source/tanya/range/primitive.d2
-rw-r--r--source/tanya/typecons.d2
43 files changed, 43 insertions, 43 deletions
diff --git a/source/tanya/algorithm/comparison.d b/source/tanya/algorithm/comparison.d
index aa4c34d..7aa7013 100644
--- a/source/tanya/algorithm/comparison.d
+++ b/source/tanya/algorithm/comparison.d
@@ -5,7 +5,7 @@
/**
* Algorithms for comparing values.
*
- * Copyright: Eugene Wissner 2018-2019.
+ * Copyright: Eugene Wissner 2018-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/algorithm/iteration.d b/source/tanya/algorithm/iteration.d
index 0b1a31c..7526df8 100644
--- a/source/tanya/algorithm/iteration.d
+++ b/source/tanya/algorithm/iteration.d
@@ -11,7 +11,7 @@
* All algorithms in this module are lazy, they request the next element of the
* original range on demand.
*
- * Copyright: Eugene Wissner 2018-2019.
+ * Copyright: Eugene Wissner 2018-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/algorithm/mutation.d b/source/tanya/algorithm/mutation.d
index cf44f18..e337e10 100644
--- a/source/tanya/algorithm/mutation.d
+++ b/source/tanya/algorithm/mutation.d
@@ -5,7 +5,7 @@
/**
* Algorithms that modify its arguments.
*
- * Copyright: Eugene Wissner 2017-2019.
+ * Copyright: Eugene Wissner 2017-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/algorithm/package.d b/source/tanya/algorithm/package.d
index e64eff0..5ebe268 100644
--- a/source/tanya/algorithm/package.d
+++ b/source/tanya/algorithm/package.d
@@ -5,7 +5,7 @@
/**
* Collection of generic algorithms.
*
- * Copyright: Eugene Wissner 2017-2019.
+ * Copyright: Eugene Wissner 2017-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/algorithm/searching.d b/source/tanya/algorithm/searching.d
index dd5f4c9..63e870f 100644
--- a/source/tanya/algorithm/searching.d
+++ b/source/tanya/algorithm/searching.d
@@ -5,7 +5,7 @@
/**
* Searching algorithms.
*
- * Copyright: Eugene Wissner 2018-2019.
+ * Copyright: Eugene Wissner 2018-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/async/event/epoll.d b/source/tanya/async/event/epoll.d
index 291950e..93ba727 100644
--- a/source/tanya/async/event/epoll.d
+++ b/source/tanya/async/event/epoll.d
@@ -5,7 +5,7 @@
/**
* Event loop implementation for Linux.
*
- * Copyright: Eugene Wissner 2016-2019.
+ * Copyright: Eugene Wissner 2016-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/async/event/iocp.d b/source/tanya/async/event/iocp.d
index d7b782d..edcd596 100644
--- a/source/tanya/async/event/iocp.d
+++ b/source/tanya/async/event/iocp.d
@@ -5,7 +5,7 @@
/**
* Event loop implementation for Windows.
*
- * Copyright: Eugene Wissner 2016-2019.
+ * Copyright: Eugene Wissner 2016-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/async/event/kqueue.d b/source/tanya/async/event/kqueue.d
index 563601a..b3c1826 100644
--- a/source/tanya/async/event/kqueue.d
+++ b/source/tanya/async/event/kqueue.d
@@ -5,7 +5,7 @@
/*
* Event loop implementation for *BSD.
*
- * Copyright: Eugene Wissner 2016-2019.
+ * Copyright: Eugene Wissner 2016-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/async/event/selector.d b/source/tanya/async/event/selector.d
index 5adc921..17554fb 100644
--- a/source/tanya/async/event/selector.d
+++ b/source/tanya/async/event/selector.d
@@ -5,7 +5,7 @@
/*
* This module contains base implementations for reactor event loops.
*
- * Copyright: Eugene Wissner 2016-2019.
+ * Copyright: Eugene Wissner 2016-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/async/iocp.d b/source/tanya/async/iocp.d
index 26c99fe..6b73d57 100644
--- a/source/tanya/async/iocp.d
+++ b/source/tanya/async/iocp.d
@@ -7,7 +7,7 @@
*
* Note: Available only on Windows.
*
- * Copyright: Eugene Wissner 2016-2019.
+ * Copyright: Eugene Wissner 2016-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/async/loop.d b/source/tanya/async/loop.d
index 6a79b4b..c496598 100644
--- a/source/tanya/async/loop.d
+++ b/source/tanya/async/loop.d
@@ -62,7 +62,7 @@
* }
* ---
*
- * Copyright: Eugene Wissner 2016-2019.
+ * Copyright: Eugene Wissner 2016-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/async/package.d b/source/tanya/async/package.d
index ef30b2d..18f361e 100644
--- a/source/tanya/async/package.d
+++ b/source/tanya/async/package.d
@@ -5,7 +5,7 @@
/**
* This package provides asynchronous capabilities.
*
- * Copyright: Eugene Wissner 2016-2019.
+ * Copyright: Eugene Wissner 2016-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/async/protocol.d b/source/tanya/async/protocol.d
index 035afaa..4a1b72c 100644
--- a/source/tanya/async/protocol.d
+++ b/source/tanya/async/protocol.d
@@ -9,7 +9,7 @@
* When an event from the network arrives, a protocol method gets
* called and can respond to the event.
*
- * Copyright: Eugene Wissner 2016-2019.
+ * Copyright: Eugene Wissner 2016-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/async/transport.d b/source/tanya/async/transport.d
index a536e4b..be8c85d 100644
--- a/source/tanya/async/transport.d
+++ b/source/tanya/async/transport.d
@@ -6,7 +6,7 @@
* This module contains transports which are responsible for data dilvery
* between two parties of an asynchronous communication.
*
- * Copyright: Eugene Wissner 2016-2019.
+ * Copyright: Eugene Wissner 2016-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/async/watcher.d b/source/tanya/async/watcher.d
index a16fb90..1895898 100644
--- a/source/tanya/async/watcher.d
+++ b/source/tanya/async/watcher.d
@@ -5,7 +5,7 @@
/**
* Watchers register user's interest in some event.
*
- * Copyright: Eugene Wissner 2016-2019.
+ * Copyright: Eugene Wissner 2016-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/bitmanip.d b/source/tanya/bitmanip.d
index c4526d8..22fdd74 100644
--- a/source/tanya/bitmanip.d
+++ b/source/tanya/bitmanip.d
@@ -5,7 +5,7 @@
/**
* Bit manipulation.
*
- * Copyright: Eugene Wissner 2018-2019.
+ * Copyright: Eugene Wissner 2018-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/container/array.d b/source/tanya/container/array.d
index 8e4a878..614020b 100644
--- a/source/tanya/container/array.d
+++ b/source/tanya/container/array.d
@@ -5,7 +5,7 @@
/**
* Single-dimensioned array.
*
- * Copyright: Eugene Wissner 2016-2019.
+ * Copyright: Eugene Wissner 2016-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/container/buffer.d b/source/tanya/container/buffer.d
index c5e8327..5b613af 100644
--- a/source/tanya/container/buffer.d
+++ b/source/tanya/container/buffer.d
@@ -5,7 +5,7 @@
/**
* This module contains buffers designed for C-style input/output APIs.
*
- * Copyright: Eugene Wissner 2016-2019.
+ * Copyright: Eugene Wissner 2016-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/container/entry.d b/source/tanya/container/entry.d
index 6fd23de..82fa12d 100644
--- a/source/tanya/container/entry.d
+++ b/source/tanya/container/entry.d
@@ -5,7 +5,7 @@
/*
* Internal package used by containers that rely on entries/nodes.
*
- * Copyright: Eugene Wissner 2016-2019.
+ * Copyright: Eugene Wissner 2016-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/container/hashtable.d b/source/tanya/container/hashtable.d
index 349e681..15bb82d 100644
--- a/source/tanya/container/hashtable.d
+++ b/source/tanya/container/hashtable.d
@@ -5,7 +5,7 @@
/**
* Hash table.
*
- * Copyright: Eugene Wissner 2018-2019.
+ * Copyright: Eugene Wissner 2018-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/container/list.d b/source/tanya/container/list.d
index 20da47e..86b06b1 100644
--- a/source/tanya/container/list.d
+++ b/source/tanya/container/list.d
@@ -6,7 +6,7 @@
* This module contains singly-linked ($(D_PSYMBOL SList)) and doubly-linked
* ($(D_PSYMBOL DList)) lists.
*
- * Copyright: Eugene Wissner 2016-2019.
+ * Copyright: Eugene Wissner 2016-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/container/package.d b/source/tanya/container/package.d
index 1919b39..5edd72e 100644
--- a/source/tanya/container/package.d
+++ b/source/tanya/container/package.d
@@ -5,7 +5,7 @@
/**
* Abstract data types whose instances are collections of other objects.
*
- * Copyright: Eugene Wissner 2016-2019.
+ * Copyright: Eugene Wissner 2016-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/container/set.d b/source/tanya/container/set.d
index ae0a0fd..2c80f0c 100644
--- a/source/tanya/container/set.d
+++ b/source/tanya/container/set.d
@@ -6,7 +6,7 @@
* This module implements a $(D_PSYMBOL Set) container that stores unique
* values without any particular order.
*
- * Copyright: Eugene Wissner 2017-2019.
+ * Copyright: Eugene Wissner 2017-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/container/string.d b/source/tanya/container/string.d
index 383ee7c..d65c027 100644
--- a/source/tanya/container/string.d
+++ b/source/tanya/container/string.d
@@ -17,7 +17,7 @@
* Internally $(D_PSYMBOL String) is represented by a sequence of
* $(D_KEYWORD char)s.
*
- * Copyright: Eugene Wissner 2017-2019.
+ * Copyright: Eugene Wissner 2017-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/conv.d b/source/tanya/conv.d
index a49d4db..5a7b971 100644
--- a/source/tanya/conv.d
+++ b/source/tanya/conv.d
@@ -5,7 +5,7 @@
/**
* This module provides functions for converting between different types.
*
- * Copyright: Eugene Wissner 2017-2019.
+ * Copyright: Eugene Wissner 2017-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/format.d b/source/tanya/format.d
index aa1c41f..12bb8e6 100644
--- a/source/tanya/format.d
+++ b/source/tanya/format.d
@@ -38,7 +38,7 @@
*
* More advanced formatting is currently not implemented.
*
- * Copyright: Eugene Wissner 2017-2019.
+ * Copyright: Eugene Wissner 2017-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/hash/lookup.d b/source/tanya/hash/lookup.d
index 94ec957..a4fd55a 100644
--- a/source/tanya/hash/lookup.d
+++ b/source/tanya/hash/lookup.d
@@ -5,7 +5,7 @@
/**
* Non-cryptographic, lookup hash functions.
*
- * Copyright: Eugene Wissner 2018-2019.
+ * Copyright: Eugene Wissner 2018-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/hash/package.d b/source/tanya/hash/package.d
index 100bd90..b109f48 100644
--- a/source/tanya/hash/package.d
+++ b/source/tanya/hash/package.d
@@ -3,7 +3,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/**
- * Copyright: Eugene Wissner 2018-2019.
+ * Copyright: Eugene Wissner 2018-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/math/nbtheory.d b/source/tanya/math/nbtheory.d
index 6f9fb53..3515705 100644
--- a/source/tanya/math/nbtheory.d
+++ b/source/tanya/math/nbtheory.d
@@ -5,7 +5,7 @@
/**
* Number theory.
*
- * Copyright: Eugene Wissner 2017-2019.
+ * Copyright: Eugene Wissner 2017-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/math/package.d b/source/tanya/math/package.d
index ee39ca5..3228108 100644
--- a/source/tanya/math/package.d
+++ b/source/tanya/math/package.d
@@ -12,7 +12,7 @@
* be found in its submodules. $(D_PSYMBOL tanya.math) doesn't import any
* submodules publically, they should be imported explicitly.
*
- * Copyright: Eugene Wissner 2016-2019.
+ * Copyright: Eugene Wissner 2016-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/math/random.d b/source/tanya/math/random.d
index 8974d7b..80e9e12 100644
--- a/source/tanya/math/random.d
+++ b/source/tanya/math/random.d
@@ -5,7 +5,7 @@
/**
* Random number generator.
*
- * Copyright: Eugene Wissner 2016-2019.
+ * Copyright: Eugene Wissner 2016-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/net/iface.d b/source/tanya/net/iface.d
index cc846dd..681611b 100644
--- a/source/tanya/net/iface.d
+++ b/source/tanya/net/iface.d
@@ -5,7 +5,7 @@
/**
* Network interfaces.
*
- * Copyright: Eugene Wissner 2018-2019.
+ * Copyright: Eugene Wissner 2018-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/net/inet.d b/source/tanya/net/inet.d
index 6ea11a2..71467f2 100644
--- a/source/tanya/net/inet.d
+++ b/source/tanya/net/inet.d
@@ -5,7 +5,7 @@
/**
* Internet utilities.
*
- * Copyright: Eugene Wissner 2016-2019.
+ * Copyright: Eugene Wissner 2016-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/net/ip.d b/source/tanya/net/ip.d
index eff93ba..3afa50e 100644
--- a/source/tanya/net/ip.d
+++ b/source/tanya/net/ip.d
@@ -5,7 +5,7 @@
/**
* Internet Protocol implementation.
*
- * Copyright: Eugene Wissner 2018-2019.
+ * Copyright: Eugene Wissner 2018-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/net/package.d b/source/tanya/net/package.d
index 200c0e7..536715c 100644
--- a/source/tanya/net/package.d
+++ b/source/tanya/net/package.d
@@ -5,7 +5,7 @@
/**
* Network programming.
*
- * Copyright: Eugene Wissner 2017-2019.
+ * Copyright: Eugene Wissner 2017-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/net/uri.d b/source/tanya/net/uri.d
index 6e72b45..be48528 100644
--- a/source/tanya/net/uri.d
+++ b/source/tanya/net/uri.d
@@ -5,7 +5,7 @@
/**
* URL parser.
*
- * Copyright: Eugene Wissner 2017-2019.
+ * Copyright: Eugene Wissner 2017-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/network/package.d b/source/tanya/network/package.d
index 6437845..8c349ec 100644
--- a/source/tanya/network/package.d
+++ b/source/tanya/network/package.d
@@ -5,7 +5,7 @@
/**
* Network programming.
*
- * Copyright: Eugene Wissner 2016-2019.
+ * Copyright: Eugene Wissner 2016-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/network/socket.d b/source/tanya/network/socket.d
index 2bcab68..ffe5846 100644
--- a/source/tanya/network/socket.d
+++ b/source/tanya/network/socket.d
@@ -41,7 +41,7 @@
* For an example of an asynchronous server refer to the documentation of the
* $(D_PSYMBOL tanya.async.loop) module.
*
- * Copyright: Eugene Wissner 2016-2019.
+ * Copyright: Eugene Wissner 2016-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/range/adapter.d b/source/tanya/range/adapter.d
index 8159005..1a739dc 100644
--- a/source/tanya/range/adapter.d
+++ b/source/tanya/range/adapter.d
@@ -5,7 +5,7 @@
/**
* Range adapters transform some data structures into ranges.
*
- * Copyright: Eugene Wissner 2018-2019.
+ * Copyright: Eugene Wissner 2018-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/range/array.d b/source/tanya/range/array.d
index aa1dc53..e412fa1 100644
--- a/source/tanya/range/array.d
+++ b/source/tanya/range/array.d
@@ -31,7 +31,7 @@
* (D_INLINECODE dchar[])) are treated as any other normal array, they aren't
* auto-decoded.
*
- * Copyright: Eugene Wissner 2017-2019.
+ * Copyright: Eugene Wissner 2017-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/range/package.d b/source/tanya/range/package.d
index c0c1eac..16ffe8c 100644
--- a/source/tanya/range/package.d
+++ b/source/tanya/range/package.d
@@ -6,7 +6,7 @@
* This package contains generic functions and templates to be used with D
* ranges.
*
- * Copyright: Eugene Wissner 2017-2019.
+ * Copyright: Eugene Wissner 2017-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/range/primitive.d b/source/tanya/range/primitive.d
index c4cb54a..06c653b 100644
--- a/source/tanya/range/primitive.d
+++ b/source/tanya/range/primitive.d
@@ -5,7 +5,7 @@
/**
* This module defines primitives for working with ranges.
*
- * Copyright: Eugene Wissner 2017-2019.
+ * Copyright: Eugene Wissner 2017-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
diff --git a/source/tanya/typecons.d b/source/tanya/typecons.d
index 1007246..26d4784 100644
--- a/source/tanya/typecons.d
+++ b/source/tanya/typecons.d
@@ -8,7 +8,7 @@
* This module contains templates that allow to build new types from the
* available ones.
*
- * Copyright: Eugene Wissner 2017-2019.
+ * Copyright: Eugene Wissner 2017-2020.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)