Skip to content

Commit 52c1d85

Browse files
Merge pull request #31 from PowershellFrameworkCollective/New-PSMDFormatTableDefinition
New-PSMDFormatTableDefinition - Redesign
2 parents ee617bc + 486a42c commit 52c1d85

15 files changed

+1062
-105
lines changed

PSModuleDevelopment/PSModuleDevelopment.psd1

Lines changed: 2 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.1.12'
7+
ModuleVersion = '2.2.3.17'
88

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

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

4646
# Assemblies that must be loaded prior to importing this module
4747
RequiredAssemblies = @('bin\PSModuleDevelopment.dll')

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.1.12"
2+
$script:PSModuleVersion = "2.2.3.17"
33

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

PSModuleDevelopment/bin/PSModuleDevelopment.xml

Lines changed: 248 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: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# Changelog
2-
## 2.2.2.14 (May 03rd, 2018)
2+
## 2.2.3.17 (May 04rd, 2018)
3+
- Upd: New-PSMDFormatTableDefinition - Major redesign, extensive additional functionality (#29)
34
- Upd: Find-PSMDType - add `-Attribute` parameter to filter by class attributes (#27)
45
- Fix: Find-PSMDType - suppress error that gets thrown on empty assemblies.
6+
- Fix: New-PSMDFormatTableDefinition - Broken closing `<Configuration>` tag (#28)
57

68
## 2.2.1.12 (March 08th, 2018)
79
- Added out-of-the box templates

0 commit comments

Comments
 (0)