Skip to content

Commit

Permalink
Fix bug in DKIM record check; version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
rhymeswithmogul committed Mar 30, 2020
1 parent 3baa258 commit bf66bf3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
Office365DnsChecker Change Log

Version 1.0.0-preview1 (November 11, 2019)
Version 1.0.1 (March 30, 2020)
- Fixed a bug in Test-ExchangeOnlineDkimRecords where some versions of
PowerShell could not find the type UInt.

Version 1.0.0 (November 11, 2019)
- Initial release.
2 changes: 1 addition & 1 deletion Office365DnsChecker.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'Office365DnsChecker.psm1'

# Version number of this module.
ModuleVersion = '1.0.0'
ModuleVersion = '1.0.1'

# Supported PSEditions
CompatiblePSEditions = @("Core", "Desktop")
Expand Down
2 changes: 1 addition & 1 deletion Office365DnsChecker.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ Function Test-ExchangeOnlineDkimRecords {

[ValidateNotNullOrEmpty()]
[ValidateSet(1,2)]
[UInt[]] $Selectors = @(1,2)
[Int[]] $Selectors = @(1,2)
)

Process {
Expand Down
8 changes: 4 additions & 4 deletions en-US/Office365DnsChecker.psm1-Help.xml
Original file line number Diff line number Diff line change
Expand Up @@ -572,13 +572,13 @@
<maml:description>
<maml:para>Exchange Online requires both selector1 and selector2 to exist. However, if you would like to check only one of the keys, specify its number here.</maml:para>
</maml:description>
<command:parameterValue required="true" variableLength="false">UInt32[]</command:parameterValue>
<command:parameterValue required="true" variableLength="false">int[]</command:parameterValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">1</command:parameterValue>
<command:parameterValue required="false" variableLength="false">2</command:parameterValue>
</command:parameterValueGroup>
<dev:type>
<maml:name>UInt32[]</maml:name>
<maml:name>int[]</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>1,2</dev:defaultValue>
Expand All @@ -604,13 +604,13 @@
<maml:description>
<maml:para>Exchange Online requires both selector1 and selector2 to exist. However, if you would like to check only one of the keys, specify its number here.</maml:para>
</maml:description>
<command:parameterValue required="true" variableLength="false">UInt32[]</command:parameterValue>
<command:parameterValue required="true" variableLength="false">int[]</command:parameterValue>
<command:parameterValueGroup>
<command:parameterValue required="false" variableLength="false">1</command:parameterValue>
<command:parameterValue required="false" variableLength="false">2</command:parameterValue>
</command:parameterValueGroup>
<dev:type>
<maml:name>UInt32[]</maml:name>
<maml:name>int[]</maml:name>
<maml:uri />
</dev:type>
<dev:defaultValue>1,2</dev:defaultValue>
Expand Down

0 comments on commit bf66bf3

Please sign in to comment.