From 549e848791bf78185e5e29795132f8318ded20df Mon Sep 17 00:00:00 2001 From: Artur Gontijo Date: Mon, 10 Mar 2025 18:50:34 -0300 Subject: [PATCH 1/2] Use getUTCFullYear() to get current year. --- docs/.vuepress/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index e325d660..a7586d4b 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -314,7 +314,7 @@ module.exports = { ], }, ], - copyright: "Copyright © 2024 LDK Developers", + copyright: `Copyright © ${(new Date()).getUTCFullYear()} BDK Developers` }, }, }; From d3a0ca4a07a8c1e202160a9a222026e0ebfc4db9 Mon Sep 17 00:00:00 2001 From: Artur Gontijo Date: Mon, 10 Mar 2025 18:54:30 -0300 Subject: [PATCH 2/2] BDK -> LDK --- docs/.vuepress/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index a7586d4b..19518322 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -314,7 +314,7 @@ module.exports = { ], }, ], - copyright: `Copyright © ${(new Date()).getUTCFullYear()} BDK Developers` + copyright: `Copyright © ${(new Date()).getUTCFullYear()} LDK Developers`, }, }, };