From 74b33d253ad6f2c10497817e9576be6825d82471 Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Fri, 13 Feb 2026 08:07:38 +0100 Subject: [PATCH] Update copyright and name writing --- middle/tanya/memory/allocator.d | 2 +- middle/tanya/memory/lifetime.d | 2 +- middle/tanya/memory/mallocator.d | 2 +- middle/tanya/memory/mmappool.d | 2 +- middle/tanya/memory/op.d | 2 +- middle/tanya/memory/package.d | 2 +- middle/tanya/memory/smartref.d | 2 +- middle/tanya/meta.d | 2 +- middle/tanya/os/error.d | 2 +- middle/tanya/os/package.d | 2 +- source/tanya/algorithm/iteration.d | 2 +- source/tanya/algorithm/mutation.d | 2 +- source/tanya/algorithm/package.d | 2 +- source/tanya/container/array.d | 2 +- source/tanya/container/buffer.d | 2 +- source/tanya/container/entry.d | 2 +- source/tanya/container/hashtable.d | 2 +- source/tanya/container/list.d | 2 +- source/tanya/container/package.d | 2 +- source/tanya/container/set.d | 2 +- source/tanya/container/string.d | 2 +- source/tanya/conv.d | 2 +- source/tanya/format.d | 2 +- source/tanya/math/hash.d | 2 +- source/tanya/math/package.d | 2 +- source/tanya/math/random.d | 2 +- source/tanya/net/iface.d | 2 +- source/tanya/net/inet.d | 2 +- source/tanya/net/ip.d | 2 +- source/tanya/net/package.d | 2 +- source/tanya/range/adapter.d | 2 +- source/tanya/range/array.d | 2 +- source/tanya/range/package.d | 2 +- source/tanya/range/primitive.d | 2 +- source/tanya/test/assertion.d | 2 +- source/tanya/test/package.d | 2 +- source/tanya/test/stub.d | 2 +- 37 files changed, 37 insertions(+), 37 deletions(-) diff --git a/middle/tanya/memory/allocator.d b/middle/tanya/memory/allocator.d index 30ef03b..3f9055e 100644 --- a/middle/tanya/memory/allocator.d +++ b/middle/tanya/memory/allocator.d @@ -8,7 +8,7 @@ * Allocators are classes encapsulating memory allocation strategy. This allows * to decouple memory management from the algorithms and the data. * - * Copyright: Eugene Wissner 2016-2025. + * Copyright: Eugen Wissner 2016-2026. * 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/middle/tanya/memory/lifetime.d b/middle/tanya/memory/lifetime.d index aa9c7d1..82f514a 100644 --- a/middle/tanya/memory/lifetime.d +++ b/middle/tanya/memory/lifetime.d @@ -5,7 +5,7 @@ /** * Lifetime management functions, types and related exceptions. * - * Copyright: Eugene Wissner 2019-2025. + * Copyright: Eugen Wissner 2019-2026. * 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/middle/tanya/memory/mallocator.d b/middle/tanya/memory/mallocator.d index 49eb424..25d831f 100644 --- a/middle/tanya/memory/mallocator.d +++ b/middle/tanya/memory/mallocator.d @@ -6,7 +6,7 @@ * Allocator based on $(D_PSYMBOL malloc), $(D_PSYMBOL realloc) and * $(D_PSYMBOL free). * - * Copyright: Eugene Wissner 2017-2025. + * Copyright: Eugen Wissner 2017-2026. * 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/middle/tanya/memory/mmappool.d b/middle/tanya/memory/mmappool.d index 1986c97..f54aded 100644 --- a/middle/tanya/memory/mmappool.d +++ b/middle/tanya/memory/mmappool.d @@ -5,7 +5,7 @@ /* * Native allocator. * - * Copyright: Eugene Wissner 2016-2025. + * Copyright: Eugen Wissner 2016-2026. * 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/middle/tanya/memory/op.d b/middle/tanya/memory/op.d index a266140..6576ad5 100644 --- a/middle/tanya/memory/op.d +++ b/middle/tanya/memory/op.d @@ -5,7 +5,7 @@ /** * Set of operations on memory blocks. * - * Copyright: Eugene Wissner 2017-2025. + * Copyright: Eugen Wissner 2017-2026. * 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/middle/tanya/memory/package.d b/middle/tanya/memory/package.d index e3c20d6..8d1d791 100644 --- a/middle/tanya/memory/package.d +++ b/middle/tanya/memory/package.d @@ -5,7 +5,7 @@ /** * Dynamic memory management. * - * Copyright: Eugene Wissner 2016-2025. + * Copyright: Eugen Wissner 2016-2026. * 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/middle/tanya/memory/smartref.d b/middle/tanya/memory/smartref.d index 6134a04..108f47e 100644 --- a/middle/tanya/memory/smartref.d +++ b/middle/tanya/memory/smartref.d @@ -14,7 +14,7 @@ * $(LI Unique ownership) * ) * - * Copyright: Eugene Wissner 2016-2025. + * Copyright: Eugen Wissner 2016-2026. * 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/middle/tanya/meta.d b/middle/tanya/meta.d index 909415e..9ed0cac 100644 --- a/middle/tanya/meta.d +++ b/middle/tanya/meta.d @@ -9,7 +9,7 @@ * to transform from one type to another. It has also different algorithms for * iterating, searching and modifying template arguments. * - * Copyright: Eugene Wissner 2017-2025. + * Copyright: Eugen Wissner 2017-2026. * 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/middle/tanya/os/error.d b/middle/tanya/os/error.d index 733ff46..33334c8 100644 --- a/middle/tanya/os/error.d +++ b/middle/tanya/os/error.d @@ -5,7 +5,7 @@ /** * This module provides a portable way of using operating system error codes. * - * Copyright: Eugene Wissner 2017-2025. + * Copyright: Eugen Wissner 2017-2026. * 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/middle/tanya/os/package.d b/middle/tanya/os/package.d index 9b81c18..94f34fb 100644 --- a/middle/tanya/os/package.d +++ b/middle/tanya/os/package.d @@ -6,7 +6,7 @@ * This package provides platform-independent interfaces to operating system * functionality. * - * Copyright: Eugene Wissner 2017-2025. + * Copyright: Eugen Wissner 2017-2026. * 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 b4e1403..e8c7bdd 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-2025. + * Copyright: Eugen Wissner 2018-2026. * 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 956ee4a..d4cb4ce 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-2025. + * Copyright: Eugen Wissner 2017-2026. * 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 b15564d..be82e68 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-2025. + * Copyright: Eugen Wissner 2017-2026. * 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 aa6dc76..1df0a85 100644 --- a/source/tanya/container/array.d +++ b/source/tanya/container/array.d @@ -5,7 +5,7 @@ /** * Single-dimensioned array. * - * Copyright: Eugene Wissner 2016-2025. + * Copyright: Eugen Wissner 2016-2026. * 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 ec8cbf0..d346f7f 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-2025. + * Copyright: Eugen Wissner 2016-2026. * 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 c4d74c2..a5e4fbd 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-2025. + * Copyright: Eugen Wissner 2016-2026. * 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 cf9f89b..b30a6f5 100644 --- a/source/tanya/container/hashtable.d +++ b/source/tanya/container/hashtable.d @@ -5,7 +5,7 @@ /** * Hash table. * - * Copyright: Eugene Wissner 2018-2025. + * Copyright: Eugen Wissner 2018-2026. * 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 513ea49..cb37144 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-2025. + * Copyright: Eugen Wissner 2016-2026. * 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 ae308d0..1badb04 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-2025. + * Copyright: Eugen Wissner 2016-2026. * 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 0c90b37..f0bc146 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-2025. + * Copyright: Eugen Wissner 2017-2026. * 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 b94b275..1c27623 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-2025. + * Copyright: Eugen Wissner 2017-2026. * 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 e373d07..872ec61 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-2025. + * Copyright: Eugen Wissner 2017-2026. * 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 18d6a76..d710493 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-2025. + * Copyright: Eugen Wissner 2017-2026. * 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/hash.d b/source/tanya/math/hash.d index feba9c9..83e9763 100644 --- a/source/tanya/math/hash.d +++ b/source/tanya/math/hash.d @@ -5,7 +5,7 @@ /** * Non-cryptographic, lookup hash functions. * - * Copyright: Eugene Wissner 2018-2025. + * Copyright: Eugen Wissner 2018-2026. * 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 66923b6..c5377c9 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-2025. + * Copyright: Eugen Wissner 2016-2026. * 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 41b2806..fa7a381 100644 --- a/source/tanya/math/random.d +++ b/source/tanya/math/random.d @@ -5,7 +5,7 @@ /** * Random number generator. * - * Copyright: Eugene Wissner 2016-2025. + * Copyright: Eugen Wissner 2016-2026. * 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 55169d2..60fb214 100644 --- a/source/tanya/net/iface.d +++ b/source/tanya/net/iface.d @@ -5,7 +5,7 @@ /** * Network interfaces. * - * Copyright: Eugene Wissner 2018-2025. + * Copyright: Eugen Wissner 2018-2026. * 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 eb2b08b..07a8571 100644 --- a/source/tanya/net/inet.d +++ b/source/tanya/net/inet.d @@ -5,7 +5,7 @@ /** * Internet utilities. * - * Copyright: Eugene Wissner 2016-2025. + * Copyright: Eugen Wissner 2016-2026. * 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 7e464b1..77c56ac 100644 --- a/source/tanya/net/ip.d +++ b/source/tanya/net/ip.d @@ -5,7 +5,7 @@ /** * Internet Protocol implementation. * - * Copyright: Eugene Wissner 2018-2025. + * Copyright: Eugen Wissner 2018-2026. * 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 f20e069..21816b7 100644 --- a/source/tanya/net/package.d +++ b/source/tanya/net/package.d @@ -5,7 +5,7 @@ /** * Network programming. * - * Copyright: Eugene Wissner 2017-2025. + * Copyright: Eugen Wissner 2017-2026. * 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 f342d2d..de9d6fb 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-2025. + * Copyright: Eugen Wissner 2018-2026. * 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 fb0895d..6e917fd 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-2025. + * Copyright: Eugen Wissner 2017-2026. * 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 e2debfc..951eeac 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-2025. + * Copyright: Eugen Wissner 2017-2026. * 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 935e887..1cf7926 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-2025. + * Copyright: Eugen Wissner 2017-2026. * 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/test/assertion.d b/source/tanya/test/assertion.d index 9b146c8..1be87fd 100644 --- a/source/tanya/test/assertion.d +++ b/source/tanya/test/assertion.d @@ -13,7 +13,7 @@ * The functions can cause segmentation fault if the module is compiled * in production mode and the condition fails. * - * Copyright: Eugene Wissner 2017-2025. + * Copyright: Eugen Wissner 2017-2026. * 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/test/package.d b/source/tanya/test/package.d index f316ddf..f976f96 100644 --- a/source/tanya/test/package.d +++ b/source/tanya/test/package.d @@ -5,7 +5,7 @@ /** * Test suite for $(D_KEYWORD unittest)-blocks. * - * Copyright: Eugene Wissner 2017-2025. + * Copyright: Eugen Wissner 2017-2026. * 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/test/stub.d b/source/tanya/test/stub.d index 1741bbb..efa7be4 100644 --- a/source/tanya/test/stub.d +++ b/source/tanya/test/stub.d @@ -5,7 +5,7 @@ /** * Range and generic type generators. * - * Copyright: Eugene Wissner 2018-2025. + * Copyright: Eugen Wissner 2018-2026. * 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)