Commit 0d1eac9 Jake Hildreth
committed
1 parent 6d33592 commit 0d1eac9 Copy full SHA for 0d1eac9
File tree 3 files changed +6
-4
lines changed
3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -18,14 +18,16 @@ if (Get-Module -Name 'PSPublishModule' -ListAvailable) {
18
18
Update-Module - Name PSPublishModule
19
19
Import-Module - Name PSPublishModule - Force
20
20
21
+ $CopyrightYear = if ($Calver ) { $CalVer.Split (' .' )[0 ] } else { (Get-Date - Format yyyy) }
22
+
21
23
Build-Module - ModuleName ' Locksmith' {
22
24
# Usual defaults as per standard module
23
25
$Manifest = [ordered ] @ {
24
26
ModuleVersion = if ($Calver ) { $CalVer } else { (Get-Date - Format yyyy.M.d) }
25
27
CompatiblePSEditions = @ (' Desktop' , ' Core' )
26
28
GUID = ' b1325b42-8dc4-4f17-aa1f-dcb5984ca14a'
27
29
Author = ' Jake Hildreth'
28
- Copyright = " (c) 2022 - $ ( ( Get-Date ).Year ) . All rights reserved."
30
+ Copyright = " (c) 2022 - $CopyrightYear . All rights reserved."
29
31
Description = ' A small tool to find and fix common misconfigurations in Active Directory Certificate Services.'
30
32
ProjectUri = ' https://github.com/TrimarcJake/Locksmith'
31
33
IconUri = ' https://raw.githubusercontent.com/TrimarcJake/Locksmith/main/Images/locksmith.ico'
Original file line number Diff line number Diff line change @@ -4381,7 +4381,7 @@ function Invoke-Locksmith {
4381
4381
[System.Management.Automation.PSCredential ]$Credential
4382
4382
)
4383
4383
4384
- $Version = ' 2024.12.30 '
4384
+ $Version = ' 2025.1.1 '
4385
4385
$LogoPart1 = @'
4386
4386
_ _____ _______ _ _ _______ _______ _____ _______ _ _
4387
4387
| | | | |____/ |______ | | | | | |_____|
Original file line number Diff line number Diff line change 3
3
Author = ' Jake Hildreth'
4
4
CmdletsToExport = @ ()
5
5
CompatiblePSEditions = @ (' Desktop' , ' Core' )
6
- Copyright = ' (c) 2022 - 2024 . All rights reserved.'
6
+ Copyright = ' (c) 2022 - 2025 . All rights reserved.'
7
7
Description = ' A small tool to find and fix common misconfigurations in Active Directory Certificate Services.'
8
8
FunctionsToExport = ' Invoke-Locksmith'
9
9
GUID = ' b1325b42-8dc4-4f17-aa1f-dcb5984ca14a'
10
10
HelpInfoURI = ' https://raw.githubusercontent.com/TrimarcJake/Locksmith/main/en-US/'
11
- ModuleVersion = ' 2024.12.30 '
11
+ ModuleVersion = ' 2025.1.1 '
12
12
PowerShellVersion = ' 5.1'
13
13
PrivateData = @ {
14
14
PSData = @ {
You can’t perform that action at this time.
0 commit comments