diff --git a/distr/!README.docx b/distr/!README.docx index d78dbd7..72adb6f 100644 Binary files a/distr/!README.docx and b/distr/!README.docx differ diff --git a/src/CD_GenerateManifest.ps1 b/src/CD_GenerateManifest.ps1 index da1bd07..134c3cc 100644 --- a/src/CD_GenerateManifest.ps1 +++ b/src/CD_GenerateManifest.ps1 @@ -1,18 +1,23 @@ $version = Get-Content VERSION $config = @{ - 'Path' = '.\ConceptDeploy\ConceptDeploy.psd1' - 'Author' = 'IRBorisov' - 'CompanyName' = 'CIHT Concept' - 'ModuleVersion' = "$version" - 'RootModule' = 'ConceptDeploy.psm1' - 'FunctionsToExport' = @('Initialize-Python', 'Install-PythonLibs', 'Install-PSLatest', 'Push-PythonPackage', 'Push-DLL', 'Expand-TarGZ' - 'Get-ExchangePath', 'Get-ProjectsPath', 'Get-ServerDistr', 'Get-ConceptLocal', - 'Save-DistrManifest', 'Open-DistrManifest', 'Install-Product', 'Enable-Product', 'Disable-Product') - 'CmdletsToExport' = @() + 'Path' = '.\ConceptDeploy\ConceptDeploy.psd1' + 'Author' = 'IRBorisov' + 'CompanyName' = 'CIHT Concept' + 'ModuleVersion' = "$version" + 'RootModule' = 'ConceptDeploy.psm1' + 'FunctionsToExport' = @( + 'Install-PSLatest', + 'Initialize-Python', 'Install-PythonLibs', + 'Push-PythonPackage', 'Push-DLL', 'Expand-TarGZ', + 'Get-ExchangePath', 'Get-ProjectsPath', 'Get-ServerDistr', 'Get-ConceptLocal', + 'Save-DistrManifest', 'Open-DistrManifest', + 'Install-Product', 'Enable-Product', 'Disable-Product' + ) + 'CmdletsToExport' = @() 'VariablesToExport' = '' - 'AliasesToExport' = @() - 'Description' = 'CIHT Concept tools deployment module' + 'AliasesToExport' = @() + 'Description' = 'CIHT Concept tools deployment module' } New-ModuleManifest @config \ No newline at end of file diff --git a/src/ConceptDeploy/ConceptDeploy.psd1 b/src/ConceptDeploy/ConceptDeploy.psd1 index 25ea79d..2287f02 100644 Binary files a/src/ConceptDeploy/ConceptDeploy.psd1 and b/src/ConceptDeploy/ConceptDeploy.psd1 differ diff --git a/src/ConceptDeploy/Install-PythonLibs.ps1 b/src/ConceptDeploy/Install-PythonLibs.ps1 index c4d33ef..9b33738 100644 --- a/src/ConceptDeploy/Install-PythonLibs.ps1 +++ b/src/ConceptDeploy/Install-PythonLibs.ps1 @@ -2,11 +2,11 @@ $global:globalLibs = @( 'pywin32', - 'pandas' + 'pandas', + 'cctext' ) $global:localLibs = @( - 'cctext', 'vbatopy' ) diff --git a/src/VERSION b/src/VERSION index 13d683c..a0cd9f0 100644 --- a/src/VERSION +++ b/src/VERSION @@ -1 +1 @@ -3.0.1 \ No newline at end of file +3.1.0 \ No newline at end of file