diff --git a/Module/PSProxmox.psd1 b/Module/PSProxmox.psd1 index 092c7bb..999e9ff 100644 --- a/Module/PSProxmox.psd1 +++ b/Module/PSProxmox.psd1 @@ -1,5 +1,5 @@ @{ - ModuleVersion = '2025.05.30.2325' + ModuleVersion = '2025.07.03.1200' GUID = 'd24f0894-3d0c-4ef1-a41e-b273c3db86ad' Author = 'PSProxmox Team' CompanyName = 'PSProxmox' @@ -29,6 +29,7 @@ 'Get-ProxmoxNode', 'Get-ProxmoxVM', 'New-ProxmoxVM', + 'New-ProxmoxVMBuilder', 'Remove-ProxmoxVM', 'Start-ProxmoxVM', 'Stop-ProxmoxVM', @@ -97,7 +98,11 @@ # TurnKey Template Management 'Get-ProxmoxTurnKeyTemplate', 'Save-ProxmoxTurnKeyTemplate', - 'New-ProxmoxContainerFromTurnKey' + 'New-ProxmoxContainerFromTurnKey', + + # VM SMBIOS Management + 'Get-ProxmoxVMSMBIOS', + 'Set-ProxmoxVMSMBIOS' ) VariablesToExport = @() AliasesToExport = @() @@ -106,7 +111,7 @@ Tags = @('Proxmox', 'VirtualMachine', 'Cluster', 'Management') LicenseUri = 'https://github.com/Grace-Solutions/PSProxmox/blob/main/LICENSE' ProjectUri = 'https://github.com/Grace-Solutions/PSProxmox' - ReleaseNotes = 'Added -IncludeGuestAgent parameter for performance optimization. Guest agent data now optional for faster queries. Fixed binary module structure. Complete codebase stabilization with 100% clean builds. See https://github.com/Grace-Solutions/PSProxmox/releases/tag/v2025.05.30.2323' + ReleaseNotes = 'Updated to .NET Standard 2.0 for dual PowerShell 5.1/7+ support. Added missing SMBIOS cmdlets to exports. Complete compatibility with both Windows PowerShell and PowerShell Core. See https://github.com/Grace-Solutions/PSProxmox/releases/tag/v2025.07.03.1200' } } } diff --git a/Module/bin b/Module/bin deleted file mode 100644 index 3af21d5..0000000 Binary files a/Module/bin and /dev/null differ diff --git a/PSProxmox/PSProxmox.Main.csproj b/PSProxmox/PSProxmox.Main.csproj index 2191f3a..a7a356f 100644 --- a/PSProxmox/PSProxmox.Main.csproj +++ b/PSProxmox/PSProxmox.Main.csproj @@ -4,7 +4,7 @@ netstandard2.0 PSProxmox PSProxmox - 2025.05.30.2323 + 2025.07.03.1200 PSProxmox Contributors PSProxmox PowerShell module for managing Proxmox VE clusters @@ -23,89 +23,7 @@ - - false - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/PSProxmox/PSProxmox.csproj b/PSProxmox/PSProxmox.csproj index f6328e9..a7fc6ce 100644 --- a/PSProxmox/PSProxmox.csproj +++ b/PSProxmox/PSProxmox.csproj @@ -4,7 +4,7 @@ netstandard2.0 PSProxmox PSProxmox - 2025.05.30.2323 + 2025.07.03.1200 PSProxmox Team PowerShell module for managing Proxmox VE clusters Copyright © 2023 @@ -13,7 +13,6 @@ - diff --git a/PSProxmox/PSProxmox.psd1 b/PSProxmox/PSProxmox.psd1 index f694cdb..7076327 100644 --- a/PSProxmox/PSProxmox.psd1 +++ b/PSProxmox/PSProxmox.psd1 @@ -1,5 +1,5 @@ @{ - ModuleVersion = '2025.05.11.1030' + ModuleVersion = '2025.07.03.1200' GUID = 'd24f0894-3d0c-4ef1-a41e-b273c3db86ad' Author = 'PSProxmox Team' CompanyName = 'PSProxmox' @@ -29,6 +29,7 @@ 'Get-ProxmoxNode', 'Get-ProxmoxVM', 'New-ProxmoxVM', + 'New-ProxmoxVMBuilder', 'Remove-ProxmoxVM', 'Start-ProxmoxVM', 'Stop-ProxmoxVM', @@ -97,7 +98,11 @@ # TurnKey Template Management 'Get-ProxmoxTurnKeyTemplate', 'Save-ProxmoxTurnKeyTemplate', - 'New-ProxmoxContainerFromTurnKey' + 'New-ProxmoxContainerFromTurnKey', + + # VM SMBIOS Management + 'Get-ProxmoxVMSMBIOS', + 'Set-ProxmoxVMSMBIOS' ) VariablesToExport = @() AliasesToExport = @() @@ -106,7 +111,7 @@ Tags = @('Proxmox', 'VirtualMachine', 'Cluster', 'Management') LicenseUri = 'https://github.com/Grace-Solutions/PSProxmox/blob/main/LICENSE' ProjectUri = 'https://github.com/Grace-Solutions/PSProxmox' - ReleaseNotes = 'Added LXC container and TurnKey template support. Fixed cloud image functionality and added pipeline support. See https://github.com/Grace-Solutions/PSProxmox/releases/tag/v2025.05.11.1030' + ReleaseNotes = 'Updated to .NET Standard 2.0 for dual PowerShell 5.1/7+ support. Added missing SMBIOS cmdlets to exports. Complete compatibility with both Windows PowerShell and PowerShell Core. See https://github.com/Grace-Solutions/PSProxmox/releases/tag/v2025.07.03.1200' } } }