Skip to content

Commit

Permalink
-changelog, version update
Browse files Browse the repository at this point in the history
-fixed py3 bug in release-rez script
  • Loading branch information
aljohns committed May 28, 2022
1 parent a99f087 commit c0cc4bf
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## 2.110.0 (2022-05-28)
[Source](https://github.com/AcademySoftwareFoundation/rez/tree/2.110.0) | [Diff](https://github.com/AcademySoftwareFoundation/rez/compare/2.109.0...2.110.0)

**Merged pull requests:**

- remove references to nerdvegas in comments [\#1312](https://github.com/AcademySoftwareFoundation/rez/pull/1312) ([nerdvegas](https://github.com/nerdvegas))

## 2.109.0 (2022-04-19)
[Source](https://github.com/nerdvegas/rez/tree/2.109.0) | [Diff](https://github.com/nerdvegas/rez/compare/2.108.0...2.109.0)

Expand Down
4 changes: 2 additions & 2 deletions release-rez.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@


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

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

proc = subprocess.Popen(nargs, stdout=subprocess.PIPE)
proc = subprocess.Popen(nargs, stdout=subprocess.PIPE, text=True)
out, _ = proc.communicate()

if proc.returncode:
Expand Down
2 changes: 1 addition & 1 deletion src/rez/utils/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@


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

0 comments on commit c0cc4bf

Please sign in to comment.