Skip to content

Commit 68f8a4c

Browse files
author
ajohns
committed
updated ver, changelog
1 parent 89a7a8b commit 68f8a4c

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
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)

src/rez/utils/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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

66
try:
77
from rez.vendor.version.version import Version

src/rezplugins/shell/powershell.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)