From 9bfab8e1eb3ff576c76a6eff6c873da13714b5e0 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Tue, 27 Jan 2026 11:53:25 +0100 Subject: [PATCH 1/2] Remove obsolete GitHub release configuration file --- .github/release.yml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 .github/release.yml diff --git a/.github/release.yml b/.github/release.yml deleted file mode 100644 index 35c6ae8..0000000 --- a/.github/release.yml +++ /dev/null @@ -1,18 +0,0 @@ -# https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes#configuring-automatically-generated-release-notes - -changelog: - exclude: - labels: - - NoRelease - categories: - - title: 🌟 Breaking Changes - labels: - - Major - - Breaking - - title: 🚀 New Features - labels: - - Minor - - Feature - - title: Other Changes - labels: - - '*' From 29da299f21817d1d2c185b7aa3622d344a8658e9 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Tue, 27 Jan 2026 11:54:07 +0100 Subject: [PATCH 2/2] docs: Add example for custom date format in Get-CurrentDateTime function --- src/functions/public/Get-CurrentDateTime.ps1 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/functions/public/Get-CurrentDateTime.ps1 b/src/functions/public/Get-CurrentDateTime.ps1 index 4c810eb..eb36af1 100644 --- a/src/functions/public/Get-CurrentDateTime.ps1 +++ b/src/functions/public/Get-CurrentDateTime.ps1 @@ -17,6 +17,11 @@ Returns the current date in short date format. + .EXAMPLE + Get-CurrentDateTime -Format 'Custom' -CustomFormat 'dddd, MMMM dd, yyyy' + + Returns the current date in a custom format like "Monday, January 20, 2026". + .LINK https://MariusStorhaug.github.io/MariusTestModule/Functions/Get-CurrentDateTime/ #>