Skip to content

Commit 9aaf75c

Browse files
author
ajohns
committed
-ver, changelog update
-fixed a missing print stmt update
1 parent 896787d commit 9aaf75c

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
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.30.2](https://github.com/nerdvegas/rez/tree/2.30.2) (2019-06-03)
4+
[Full Changelog](https://github.com/nerdvegas/rez/compare/2.30.1...2.30.2)
5+
6+
**Merged pull requests:**
7+
8+
- Update print statements to be Python 3 compatible [\#641](https://github.com/nerdvegas/rez/pull/641) ([bpabel](https://github.com/bpabel))
9+
310
## [2.30.1](https://github.com/nerdvegas/rez/tree/2.30.1) (2019-06-03)
411
[Full Changelog](https://github.com/nerdvegas/rez/compare/2.30.0...2.30.1)
512

src/rez/cli/memcache.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def command(opts, parser, extra_arg_groups=None):
113113

114114
seen.add(family.name)
115115

116-
print "memcached servers are warmed."
116+
print("memcached servers are warmed.")
117117
return
118118

119119
if opts.reset_stats:

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.30.1"
4+
_rez_version = "2.30.2"
55

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

0 commit comments

Comments
 (0)