Skip to content

Commit abce25d

Browse files
Merge pull request #82 from PowershellFrameworkCollective/development
2.2.6.51
2 parents 17fedb1 + a8353b1 commit abce25d

32 files changed

+962
-19
lines changed

PSModuleDevelopment/PSModuleDevelopment.psd1

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
RootModule = 'PSModuleDevelopment.psm1'
55

66
# Version number of this module.
7-
ModuleVersion = '2.2.5.41'
7+
ModuleVersion = '2.2.6.51'
88

99
# ID used to uniquely identify this module
1010
GUID = '37dd5fce-e7b5-4d57-ac37-832055ce49d6'
@@ -41,7 +41,9 @@
4141

4242
# Modules that must be imported into the global environment prior to importing
4343
# this module
44-
RequiredModules = @(@{ ModuleName='PSFramework'; ModuleVersion= '0.9.25.112' })
44+
RequiredModules = @(
45+
@{ ModuleName = 'PSFramework'; ModuleVersion = '0.10.31.176' }
46+
)
4547

4648
# Assemblies that must be loaded prior to importing this module
4749
RequiredAssemblies = @('bin\PSModuleDevelopment.dll')
@@ -65,6 +67,7 @@
6567
'Expand-PSMDTypeName',
6668
'Find-PSMDFileContent',
6769
'Find-PSMDType',
70+
'Format-PSMDParameter',
6871
'Get-PSMDAssembly',
6972
'Get-PSMDConstructor',
7073
'Get-PSMDHelpEx',
@@ -74,6 +77,7 @@
7477
'Import-PSMDModuleDebug',
7578
'Invoke-PSMDTemplate',
7679
'Measure-PSMDCommandEx',
80+
'Measure-PSMDLinesOfCode',
7781
'New-PSMDDotNetProject',
7882
'New-PSMDHeader',
7983
'New-PSMDFormatTableDefinition',
@@ -85,6 +89,7 @@
8589
'Remove-PSMDTemplate',
8690
'Rename-PSMDParameter',
8791
'Restart-PSMDShell',
92+
'Search-PSMDPropertyValue',
8893
'Set-PSMDEncoding',
8994
'Set-PSMDModuleDebug',
9095
'Set-PSMDCmdletBinding',

PSModuleDevelopment/PSModuleDevelopment.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
$script:PSModuleRoot = $PSScriptRoot
2-
$script:PSModuleVersion = "2.2.5.41"
2+
$script:PSModuleVersion = "2.2.6.51"
33

44
$script:doDotSource = $false
55
if (Get-PSFConfigValue -FullName PSModuleDevelopment.Import.DoDotSource) { $script:doDotSource = $true }
512 Bytes
Binary file not shown.
Binary file not shown.

PSModuleDevelopment/bin/PSModuleDevelopment.xml

Lines changed: 96 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

PSModuleDevelopment/changelog.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,25 @@
11
# Changelog
2+
## 2.2.6.51 (January 29th, 2019)
3+
- New: Format-PSMDParameter - updates legacy parameter notation
4+
- New: Measure-PSMDLinesOfCode - Measures the lines of code in a scriptfile.
5+
- New: Search-PSMDPropertyValue - search objects for values in properties
6+
- Upd: Template PSFTest - adding WMI commands to list of forbidden commands
7+
- Upd: Template PSFModule - adding changelog
8+
- Upd: Template PSFModule - adding strings for localization
9+
- Upd: Template PSFModule - adding scriptblocks
10+
- Upd: Template PSFProject - updated build txt files to include new module content
11+
- Fix: Template PSMTest - replacing all -Filter calls on Get-ChildItem
12+
- Fix: New-PSMDTemplate records binary files as text files
13+
214
## 2.2.5.41 (December 18th, 2018)
315
- Fix: Get-PSMDMember - dropping the unintentional bool return
416

517
## 2.2.5.40 (December 17th, 2018)
618
- New: Command Show-PSMDSyntax, used to show the parameter syntax with proper highlighting
719
- New: Command Get-PSMDMember, used to show the members in a more organic and useful way
820
- Fix: Template PSFProject build step was broken
9-
10-
## 2.2.5.37 (October 20th, 2018)
21+
22+
## 2.2.5.37 ( October 20th, 2018)
1123
- Upd: Set-PSMDModulePath - add `-Module` parameter to persist the setting
1224
- Upd: Set-PSMDModulePath - add `-Register` parameter for integrated persistence
1325
- Upd: Set-PSMDEncoding - use `PSFEncoding` parameter class & tabcompletion
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@{
2+
'MeasurePSMDLinesOfCode.Processing' = 'Processing Path: {0}'
3+
}

0 commit comments

Comments
 (0)