Skip to content

Commit a195fea

Browse files
author
ajohns
committed
ver, chlog update
1 parent 2fc7e4d commit a195fea

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
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.90.2 (2021-06-16)
4+
[Source](https://github.com/nerdvegas/rez/tree/2.90.2) | [Diff](https://github.com/nerdvegas/rez/compare/2.90.1...2.90.2)
5+
6+
**Merged pull requests:**
7+
8+
- Allow trailing comma in Legacy Metadata [\#1092](https://github.com/nerdvegas/rez/pull/1092) ([bfloch](https://github.com/bfloch))
9+
310
## 2.90.1 (2021-06-08)
411
[Source](https://github.com/nerdvegas/rez/tree/2.90.1) | [Diff](https://github.com/nerdvegas/rez/compare/2.90.0...2.90.1)
512

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.90.1"
4+
_rez_version = "2.90.2"
55

66

77
# Copyright 2013-2016 Allan Johns.

src/rez/vendor/distlib/util.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,9 +215,13 @@ def get_versions(ver_remaining):
215215
if not ver_remaining or ver_remaining[0] != ',':
216216
break
217217
ver_remaining = ver_remaining[1:].lstrip()
218+
219+
# https://github.com/nerdvegas/rez/pull/1092
218220
# Some packages have a trailing comma which would break the matching
219221
if not ver_remaining:
220222
break
223+
# /end pull/1092
224+
221225
m = COMPARE_OP.match(ver_remaining)
222226
if not m:
223227
raise SyntaxError('invalid constraint: %s' % ver_remaining)

0 commit comments

Comments
 (0)