File tree Expand file tree Collapse file tree 3 files changed +14
-5
lines changed Expand file tree Collapse file tree 3 files changed +14
-5
lines changed Original file line number Diff line number Diff line change 11# Change Log
22
3+ ## [ 2.37.0] ( https://github.com/nerdvegas/rez/tree/2.37.0 ) (2019-07-19)
4+ [ Full Changelog] ( https://github.com/nerdvegas/rez/compare/2.36.2...2.37.0 )
5+
6+ ** Notes**
7+
8+ Adds PowerShell support.
9+ https://docs.microsoft.com/en-us/powershell/
10+
11+ ** Merged pull requests:**
12+
13+ - Implement PowerShell [ \# 644] ( https://github.com/nerdvegas/rez/pull/644 ) ([ mottosso] ( https://github.com/mottosso ) )
14+
315## [ 2.36.2] ( https://github.com/nerdvegas/rez/tree/2.36.2 ) (2019-07-16)
416[ Full Changelog] ( https://github.com/nerdvegas/rez/compare/2.36.1...2.36.2 )
517
618** Merged pull requests:**
719
8- [ Feature] Pure python package detection [ \# 628] ( https://github.com/nerdvegas/rez/pull/628 ) ([ lambdaclan] ( https://github.com/lambdaclan ) )
20+ - [ Feature] Pure python package detection [ \# 628] ( https://github.com/nerdvegas/rez/pull/628 ) ([ lambdaclan] ( https://github.com/lambdaclan ) )
921
1022## [ 2.36.1] ( https://github.com/nerdvegas/rez/tree/2.36.1 ) (2019-07-16)
1123[ Full Changelog] ( https://github.com/nerdvegas/rez/compare/2.36.0...2.36.1 )
Original file line number Diff line number Diff line change 11
22
33# Update this value to version up Rez. Do not place anything else in this file.
4- _rez_version = "2.36.2 "
4+ _rez_version = "2.37.0 "
55
66try :
77 from rez .vendor .version .version import Version
Original file line number Diff line number Diff line change @@ -278,9 +278,6 @@ def info(self, value):
278278 for line in value .split ('\n ' ):
279279 self ._addline ('Write-Host %s' % line )
280280
281- # Prefer Write-Host to Write-Output
282- # See https://github.com/mottosso/bleeding-rez/issues/48
283-
284281 def error (self , value ):
285282 for line in value .split ('\n ' ):
286283 self ._addline ('Write-Error "%s"' % line )
You can’t perform that action at this time.
0 commit comments