Skip to content

Commit c0cc4bf

Browse files
author
aljohns
committed
-changelog, version update
-fixed py3 bug in release-rez script
1 parent a99f087 commit c0cc4bf

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change Log
22

3+
## 2.110.0 (2022-05-28)
4+
[Source](https://github.com/AcademySoftwareFoundation/rez/tree/2.110.0) | [Diff](https://github.com/AcademySoftwareFoundation/rez/compare/2.109.0...2.110.0)
5+
6+
**Merged pull requests:**
7+
8+
- remove references to nerdvegas in comments [\#1312](https://github.com/AcademySoftwareFoundation/rez/pull/1312) ([nerdvegas](https://github.com/nerdvegas))
9+
310
## 2.109.0 (2022-04-19)
411
[Source](https://github.com/nerdvegas/rez/tree/2.109.0) | [Diff](https://github.com/nerdvegas/rez/compare/2.108.0...2.109.0)
512

release-rez.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030

3131
def get_github_repo_owner():
32-
out = subprocess.check_output(["git", "remote", "-v"])
32+
out = subprocess.check_output(["git", "remote", "-v"], text=True)
3333

3434
# eg git@github.com:jbloggs/rez.git, https://github.com/jbloggs/rez.git
3535
remote_url = out.split()[1]
@@ -52,7 +52,7 @@ def run_command(*nargs):
5252
if verbose:
5353
print("RUNNING: %s" % ' '.join(map(quote, nargs)))
5454

55-
proc = subprocess.Popen(nargs, stdout=subprocess.PIPE)
55+
proc = subprocess.Popen(nargs, stdout=subprocess.PIPE, text=True)
5656
out, _ = proc.communicate()
5757

5858
if proc.returncode:

src/rez/utils/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44

55
# Update this value to version up Rez. Do not place anything else in this file.
6-
_rez_version = "2.109.0"
6+
_rez_version = "2.110.0"

0 commit comments

Comments
 (0)