File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
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
+
3
10
## 2.90.1 (2021-06-08)
4
11
[ Source] ( https://github.com/nerdvegas/rez/tree/2.90.1 ) | [ Diff] ( https://github.com/nerdvegas/rez/compare/2.90.0...2.90.1 )
5
12
Original file line number Diff line number Diff line change 1
1
2
2
3
3
# 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 "
5
5
6
6
7
7
# Copyright 2013-2016 Allan Johns.
Original file line number Diff line number Diff line change @@ -215,9 +215,13 @@ def get_versions(ver_remaining):
215
215
if not ver_remaining or ver_remaining [0 ] != ',' :
216
216
break
217
217
ver_remaining = ver_remaining [1 :].lstrip ()
218
+
219
+ # https://github.com/nerdvegas/rez/pull/1092
218
220
# Some packages have a trailing comma which would break the matching
219
221
if not ver_remaining :
220
222
break
223
+ # /end pull/1092
224
+
221
225
m = COMPARE_OP .match (ver_remaining )
222
226
if not m :
223
227
raise SyntaxError ('invalid constraint: %s' % ver_remaining )
You can’t perform that action at this time.
0 commit comments