Skip to content

Commit

Permalink
More updates
Browse files Browse the repository at this point in the history
  • Loading branch information
proxb committed Nov 14, 2016
1 parent 24533c8 commit a913fec
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions PoshRSJob/PoshRSJob.psd1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

#
# PoshRSJob
# Version 1.7.3.2
# Version 1.7.3.3
#
# Boe Prox (c) 2014
# http://learn-powershell.net
Expand All @@ -14,7 +14,7 @@
ModuleToProcess = 'PoshRSJob.psm1'

# Version number of this module.
ModuleVersion = '1.7.3.2'
ModuleVersion = '1.7.3.3'

# ID used to uniquely identify this module
GUID = '9b17fb0f-e939-4a5c-b194-3f2247452972'
Expand Down
6 changes: 3 additions & 3 deletions PoshRSJob/Private/WriteStream.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
If (($IndividualJob.$Stream.Count -gt 0) -AND (-NOT ($Null -eq $IndividualJob.$Stream)))
{
Switch ($Stream) {
"Verbose" { $IndividualJob | Select -ExpandProperty Verbose | ForEach { $host.ui.WriteVerboseLine($_)} }
"Debug" { $IndividualJob | Select -ExpandProperty Debug | ForEach { $host.ui.WriteDebugLine($_)} }
"Warning" { $IndividualJob | Select -ExpandProperty Warning | ForEach { $host.ui.WriteWarningLine($_) } }
"Verbose" { $IndividualJob | Select -ExpandProperty Verbose| Where { $_.Message } | ForEach { $host.ui.WriteVerboseLine($_)} }
"Debug" { $IndividualJob | Select -ExpandProperty Debug| Where { $_.Message } | ForEach { $host.ui.WriteDebugLine($_)} }
"Warning" { $IndividualJob | Select -ExpandProperty Warning| Where { $_.Message } | ForEach { $host.ui.WriteWarningLine($_) } }
"Error" { $IndividualJob.Error.Exception | Select -ExpandProperty Message | ForEach {$host.ui.WriteErrorLine($_)} }
"Output" { $IndividualJob | Select -ExpandProperty Output }
}
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PoshRSJob 1.7.3.2
PoshRSJob 1.7.3.3
===================

[![Build status](https://ci.appveyor.com/api/projects/status/svrd4ho4otugki24?svg=true)](https://ci.appveyor.com/project/proxb/poshrsjob) [![Join the chat at https://gitter.im/proxb/PoshRSJob](https://badges.gitter.im/proxb/PoshRSJob.svg)](https://gitter.im/proxb/PoshRSJob?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
Expand All @@ -12,8 +12,8 @@ Provides an alternative to PSjobs with greater performance and less overhead to
Install-Module -Name PoshRSJob
```

####Download the latest release (1.7.3.2)
https://github.com/proxb/PoshRSJob/releases/download/1.7.3.2/PoshRSJob.zip
####Download the latest release (1.7.3.3)
https://github.com/proxb/PoshRSJob/releases/download/1.7.3.3/PoshRSJob.zip


More information and examples here: http://learn-powershell.net/2015/04/19/latest-updates-to-poshrsjob/
Expand Down
3 changes: 2 additions & 1 deletion ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
---------
|1.7.3.2|
|1.7.3.3|
---------
* Fixed Issue #116 (v1.7.3.0 is extremely slow)
* Fixed Issue #75 (Feature Request: Add RunspaceID handling to Start-RSJob for better throttling support)
* Fixed Issue #107 (Write-Stream throws lots of spurious errors on missing variables)
* Added some better support for streams with Receive-RSJob

---------
Expand Down

0 comments on commit a913fec

Please sign in to comment.