Skip to content

Commit

Permalink
Update module version
Browse files Browse the repository at this point in the history
  • Loading branch information
PrzemyslawKlys committed Aug 11, 2024
1 parent da31e19 commit 34c2482
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions UnifiStockTracker.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,24 @@
CmdletsToExport = @()
CompanyName = 'Evotec'
CompatiblePSEditions = @('Desktop', 'Core')
Copyright = '(c) 2011 - 2023 Przemyslaw Klys @ Evotec. All rights reserved.'
Copyright = '(c) 2011 - 2024 Przemyslaw Klys @ Evotec. All rights reserved.'
Description = 'PowerShell module to get current stock in Ubiquiti Unifi store'
FunctionsToExport = @('Get-UnifiStock', 'Get-UnifiStockLegacy', 'Wait-UnifiStock', 'Wait-UnifiStockLegacy')
GUID = 'e3d09753-16be-4535-b74f-d9a4c6927a54'
ModuleVersion = '2.1.0'
ModuleVersion = '2.2.0'
PowerShellVersion = '5.1'
PrivateData = @{
PSData = @{
ProjectUri = 'https://github.com/EvotecIT/UnifiStockTracker'
ExternalModuleDependencies = @('Microsoft.PowerShell.Management', 'Microsoft.PowerShell.Utility')
IconUri = 'https://help.ui.com/hc/article_attachments/360010605813/ubiquiti_logo.png'
ProjectUri = 'https://github.com/EvotecIT/UnifiStockTracker'
Tags = @('Windows', 'macOS', 'Linux', 'Ubiquiti', 'Unifi', 'Stock', 'Tracker')
ExternalModuleDependencies = @('Microsoft.PowerShell.Management', 'Microsoft.PowerShell.Utility')
}
}
RequiredModules = @(@{
Guid = '0b0ba5c5-ec85-4c2b-a718-874e55a8bc3f'
ModuleName = 'PSWriteColor'
ModuleVersion = '1.0.1'
Guid = '0b0ba5c5-ec85-4c2b-a718-874e55a8bc3f'
}, 'Microsoft.PowerShell.Management', 'Microsoft.PowerShell.Utility')
RootModule = 'UnifiStockTracker.psm1'
}
2 changes: 1 addition & 1 deletion UnifiStockTracker.psm1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Get public and private function definition files.
#Get public and private function definition files.
$Public = @( Get-ChildItem -Path $PSScriptRoot\Public\*.ps1 -ErrorAction SilentlyContinue -Recurse )
$Private = @( Get-ChildItem -Path $PSScriptRoot\Private\*.ps1 -ErrorAction SilentlyContinue -Recurse )
$Classes = @( Get-ChildItem -Path $PSScriptRoot\Classes\*.ps1 -ErrorAction SilentlyContinue -Recurse )
Expand Down

0 comments on commit 34c2482

Please sign in to comment.