From cf1e555deb1aab7b9b8288f4e2ff5895bc25b0b0 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Wed, 4 Jun 2025 10:25:17 +0000 Subject: docs: Update copyright header year --- src/ast.rs | 4 ++-- src/ast/container.rs | 4 ++-- src/ast/macros.rs | 4 ++-- src/ast/node.rs | 4 ++-- src/convert.rs | 4 ++-- src/convert/html.rs | 4 ++-- src/convert/macros.rs | 4 ++-- src/convert/markdown.rs | 4 ++-- src/lib.rs | 4 ++-- src/meta.rs | 4 ++-- src/quick.rs | 4 ++-- src/request.rs | 4 ++-- src/request/blocking.rs | 4 ++-- src/request/non_blocking.rs | 4 ++-- src/request/response.rs | 4 ++-- src/request/status.rs | 4 ++-- src/request/verifier.rs | 4 ++-- tests/ast.rs | 4 ++-- tests/convert.rs | 4 ++-- tests/meta.rs | 4 ++-- tests/quick.rs | 4 ++-- tests/status.rs | 4 ++-- 22 files changed, 44 insertions(+), 44 deletions(-) diff --git a/src/ast.rs b/src/ast.rs index cec8c89..52c25de 100644 --- a/src/ast.rs +++ b/src/ast.rs @@ -1,5 +1,5 @@ // This file is part of Germ . -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // SPDX-License-Identifier: GPL-3.0-only //! Build AST trees from Gemtext diff --git a/src/ast/container.rs b/src/ast/container.rs index c890100..0d20193 100644 --- a/src/ast/container.rs +++ b/src/ast/container.rs @@ -1,5 +1,5 @@ // This file is part of Germ . -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // SPDX-License-Identifier: GPL-3.0-only use {super::Node, std::fmt::Write}; diff --git a/src/ast/macros.rs b/src/ast/macros.rs index 435fd3b..598cfa9 100644 --- a/src/ast/macros.rs +++ b/src/ast/macros.rs @@ -1,5 +1,5 @@ // This file is part of Germ . -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // SPDX-License-Identifier: GPL-3.0-only /// Convert Gemtext an `Ast` diff --git a/src/ast/node.rs b/src/ast/node.rs index 95190d2..72bc126 100644 --- a/src/ast/node.rs +++ b/src/ast/node.rs @@ -1,5 +1,5 @@ // This file is part of Germ . -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // SPDX-License-Identifier: GPL-3.0-only /// A Gemtext AST node. diff --git a/src/convert.rs b/src/convert.rs index c42bbc3..ebb4f43 100644 --- a/src/convert.rs +++ b/src/convert.rs @@ -1,5 +1,5 @@ // This file is part of Germ . -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // SPDX-License-Identifier: GPL-3.0-only //! Convert Gemtext into many types of markup. diff --git a/src/convert/html.rs b/src/convert/html.rs index 4608cd5..bfba6e7 100644 --- a/src/convert/html.rs +++ b/src/convert/html.rs @@ -1,5 +1,5 @@ // This file is part of Germ . -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // SPDX-License-Identifier: GPL-3.0-only use {crate::ast::Node, std::fmt::Write}; diff --git a/src/convert/macros.rs b/src/convert/macros.rs index f887bfe..a3b6724 100644 --- a/src/convert/macros.rs +++ b/src/convert/macros.rs @@ -1,5 +1,5 @@ // This file is part of Germ . -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // SPDX-License-Identifier: GPL-3.0-only /// Convert Gemtext into HTML diff --git a/src/convert/markdown.rs b/src/convert/markdown.rs index d90790f..27306a7 100644 --- a/src/convert/markdown.rs +++ b/src/convert/markdown.rs @@ -1,5 +1,5 @@ // This file is part of Germ . -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // SPDX-License-Identifier: GPL-3.0-only use {crate::ast::Node, std::fmt::Write}; diff --git a/src/lib.rs b/src/lib.rs index aa193f1..c4893b3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,5 @@ // This file is part of Germ . -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // SPDX-License-Identifier: GPL-3.0-only #![deny( diff --git a/src/meta.rs b/src/meta.rs index 95ff4f1..d50af2d 100644 --- a/src/meta.rs +++ b/src/meta.rs @@ -1,5 +1,5 @@ // This file is part of Germ . -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // SPDX-License-Identifier: GPL-3.0-only use std::{borrow::Cow, collections::HashMap, fmt::Display}; diff --git a/src/quick.rs b/src/quick.rs index 6bc5913..024856e 100644 --- a/src/quick.rs +++ b/src/quick.rs @@ -1,5 +1,5 @@ // This file is part of Germ . -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // SPDX-License-Identifier: GPL-3.0-only pub enum HeadingLevel { diff --git a/src/request.rs b/src/request.rs index fb161d7..eb2973b 100644 --- a/src/request.rs +++ b/src/request.rs @@ -1,5 +1,5 @@ // This file is part of Germ . -// Copyright (C) 2022-2023 Fuwn +// Copyright (C) 2022-2025 Fuwn // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // SPDX-License-Identifier: GPL-3.0-only //! Make Gemini requests and get sane, structured results diff --git a/src/request/blocking.rs b/src/request/blocking.rs index ebf8515..2002ed8 100644 --- a/src/request/blocking.rs +++ b/src/request/blocking.rs @@ -1,5 +1,5 @@ // This file is part of Germ . -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // SPDX-License-Identifier: GPL-3.0-only use { diff --git a/src/request/non_blocking.rs b/src/request/non_blocking.rs index 84835a8..3bbcd95 100644 --- a/src/request/non_blocking.rs +++ b/src/request/non_blocking.rs @@ -1,5 +1,5 @@ // This file is part of Germ . -// Copyright (C) 2022-2024 Fuwn +// Copyright (C) 2022-2025 Fuwn // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // SPDX-License-Identifier: GPL-3.0-only use { diff --git a/src/request/response.rs b/src/request/response.rs index 7c3b1fd..ef4b515 100644 --- a/src/request/response.rs +++ b/src/request/response.rs @@ -1,5 +1,5 @@ // This file is part of Germ . -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // SPDX-License-Identifier: GPL-3.0-only use { diff --git a/src/request/status.rs b/src/request/status.rs index 557171a..0ec5041 100644 --- a/src/request/status.rs +++ b/src/request/status.rs @@ -1,5 +1,5 @@ // This file is part of Germ . -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // SPDX-License-Identifier: GPL-3.0-only use std::{fmt, fmt::Formatter}; diff --git a/src/request/verifier.rs b/src/request/verifier.rs index 8e5d015..b037353 100644 --- a/src/request/verifier.rs +++ b/src/request/verifier.rs @@ -1,5 +1,5 @@ // This file is part of Germ . -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // SPDX-License-Identifier: GPL-3.0-only use { diff --git a/tests/ast.rs b/tests/ast.rs index 37320a7..397f752 100644 --- a/tests/ast.rs +++ b/tests/ast.rs @@ -1,5 +1,5 @@ // This file is part of Germ . -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // SPDX-License-Identifier: GPL-3.0-only #[cfg(test)] diff --git a/tests/convert.rs b/tests/convert.rs index 84d605e..12bbcae 100644 --- a/tests/convert.rs +++ b/tests/convert.rs @@ -1,5 +1,5 @@ // This file is part of Germ . -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // SPDX-License-Identifier: GPL-3.0-only #[cfg(test)] diff --git a/tests/meta.rs b/tests/meta.rs index 7c555de..e92df0e 100644 --- a/tests/meta.rs +++ b/tests/meta.rs @@ -1,5 +1,5 @@ // This file is part of Germ . -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // SPDX-License-Identifier: GPL-3.0-only #[cfg(test)] diff --git a/tests/quick.rs b/tests/quick.rs index 255acd9..bc61a84 100644 --- a/tests/quick.rs +++ b/tests/quick.rs @@ -1,5 +1,5 @@ // This file is part of Germ . -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // SPDX-License-Identifier: GPL-3.0-only #[cfg(test)] diff --git a/tests/status.rs b/tests/status.rs index 51f3f66..6a210a0 100644 --- a/tests/status.rs +++ b/tests/status.rs @@ -1,5 +1,5 @@ // This file is part of Germ . -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2025 Fuwn // SPDX-License-Identifier: GPL-3.0-only #[cfg(test)] -- cgit v1.2.3