Skip to content

Commit

Permalink
2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ili101 committed Aug 23, 2019
1 parent db5e1b3 commit 04fd0cb
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.0.1 - 2019/08/24 (Stable)
### Documentation
* Updated Description and Tags.

## 2.0.0 - 2019/08/22 (Stable)
### New
* PowerShell Core 7 is now supported!
Expand Down
16 changes: 8 additions & 8 deletions Examples/Join-Object.Examples.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -131,22 +131,22 @@ Join-Object @Params | Format-Table
#>

. $ExampleData
# Example 7: -AddKey. can be used with "-Type AllInBoth" to add a column named "Key" containing the joining key.
# Example 7: -AddKey. can be used with "-Type AllInBoth" to add a column containing the joining key.
$Params = @{
Left = $PSCustomObject
Right = $DataTable
LeftJoinProperty = 'ID'
RightJoinProperty = 'IDD'
LeftProperties = 'Sub'
Type = 'AllInBoth'
AddKey = $true
AddKey = 'Index'
}
Join-Object @Params | Format-Table
<# Output
Key Sub Name Junk IntT
--- --- ---- ---- ----
1 S1 foo AAA 123456
2 S2
3 S3 Bar S3
4 D
Index Sub Name Junk IntT
----- --- ---- ---- ----
1 S1 foo AAA 123456
2 S2
3 S3 Bar S3
4 D
#>
8 changes: 4 additions & 4 deletions Join-Object.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'Join-Object.psm1'

# Version number of this module.
ModuleVersion = '2.0.0'
ModuleVersion = '2.0.1'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand All @@ -32,11 +32,11 @@
# Description of the functionality provided by this module
Description = @'
Join-Object LINQ Edition.
Join data from two sets of objects based on a common value.
Aims to provide the exact functionality of https://github.com/RamblingCookieMonster/PowerShell/blob/master/Join-Object.ps1 with much better performance.
Initial testing shows at last 100 times faster.
## Explanation and usage Examples
See RamblingCookieMonster guide http://ramblingcookiemonster.github.io/Join-Object/ and https://github.com/ili101/Join-Object/blob/master/Examples/Join-Object.Examples.ps1
More info at https://github.com/ili101/Join-Object/blob/master/README.md
'@

# Minimum version of the Windows PowerShell engine required by this module
Expand Down Expand Up @@ -102,7 +102,7 @@ See RamblingCookieMonster guide http://ramblingcookiemonster.github.io/Join-Obje
PSData = @{

# Tags applied to this module. These help with module discovery in online galleries.
Tags = @('Join-Object', 'LINQ')
Tags = @('Join', 'Join-Object', 'LINQ', 'Combine', 'Merge', 'Union', 'Compare', 'Table', 'DataTable')

# A URL to the license for this module.
# LicenseUri = ''
Expand Down

0 comments on commit 04fd0cb

Please sign in to comment.