From 1d3fe7b02b2d2ec7cad5c8e3e0fd4eafb60bf0e0 Mon Sep 17 00:00:00 2001 From: metamuffin Date: Tue, 6 Jan 2026 02:53:56 +0100 Subject: Update copyright year --- database/src/backends/memory.rs | 2 +- database/src/backends/mod.rs | 2 +- database/src/backends/redb.rs | 2 +- database/src/backends/rocksdb.rs | 2 +- database/src/indices/key.rs | 2 +- database/src/indices/mod.rs | 2 +- database/src/indices/order.rs | 2 +- database/src/lib.rs | 2 +- database/src/prefix_iterator.rs | 2 +- database/src/table.rs | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) (limited to 'database/src') diff --git a/database/src/backends/memory.rs b/database/src/backends/memory.rs index 302b232..d7d0e2c 100644 --- a/database/src/backends/memory.rs +++ b/database/src/backends/memory.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use crate::backends::{Db, ReadTransaction, ReadTxnFunction, WriteTransaction, WriteTxnFunction}; diff --git a/database/src/backends/mod.rs b/database/src/backends/mod.rs index dd028f4..580548e 100644 --- a/database/src/backends/mod.rs +++ b/database/src/backends/mod.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ pub mod memory; diff --git a/database/src/backends/redb.rs b/database/src/backends/redb.rs index 409a551..d1a0f8c 100644 --- a/database/src/backends/redb.rs +++ b/database/src/backends/redb.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use crate::backends::{Db, ReadTransaction, ReadTxnFunction, WriteTransaction, WriteTxnFunction}; diff --git a/database/src/backends/rocksdb.rs b/database/src/backends/rocksdb.rs index 92c6a6d..b62a482 100644 --- a/database/src/backends/rocksdb.rs +++ b/database/src/backends/rocksdb.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use crate::backends::{Db, ReadTransaction, WriteTransaction, WriteTxnFunction}; diff --git a/database/src/indices/key.rs b/database/src/indices/key.rs index 9f9511b..ab38d71 100644 --- a/database/src/indices/key.rs +++ b/database/src/indices/key.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use crate::{ diff --git a/database/src/indices/mod.rs b/database/src/indices/mod.rs index e291c91..ab37589 100644 --- a/database/src/indices/mod.rs +++ b/database/src/indices/mod.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use crate::{backends::WriteTransaction, table::RowNum}; diff --git a/database/src/indices/order.rs b/database/src/indices/order.rs index 25ab01b..9163681 100644 --- a/database/src/indices/order.rs +++ b/database/src/indices/order.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use crate::{ diff --git a/database/src/lib.rs b/database/src/lib.rs index e9e69bb..40bda72 100644 --- a/database/src/lib.rs +++ b/database/src/lib.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ pub mod backends; pub mod indices; diff --git a/database/src/prefix_iterator.rs b/database/src/prefix_iterator.rs index 3586ae2..9a73558 100644 --- a/database/src/prefix_iterator.rs +++ b/database/src/prefix_iterator.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use anyhow::Result; diff --git a/database/src/table.rs b/database/src/table.rs index 1f44571..ba95f8e 100644 --- a/database/src/table.rs +++ b/database/src/table.rs @@ -1,7 +1,7 @@ /* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. - Copyright (C) 2025 metamuffin + Copyright (C) 2026 metamuffin */ use crate::{ -- cgit v1.3