Skip to content

Commit 63e6401

Browse files
authored
Merge pull request #562 from nerdvegas/issue_561
Fixed Regression in 2.24.0
2 parents 06645fe + c1e8323 commit 63e6401

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 2.26.4 [[#562](https://github.com/nerdvegas/rez/pull/562)] Fixed Regression in 2.24.0
2+
3+
#### Addressed Issues
4+
5+
* [#561](https://github.com/nerdvegas/rez/issues/561) timestamp not written to installed package
6+
17
## 2.26.3 [[#560](https://github.com/nerdvegas/rez/pull/560)] Package.py permissions issue
28

39
#### Addressed Issues

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.26.3"
4+
_rez_version = "2.26.4"
55

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

src/rezplugins/package_repository/filesystem.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1026,7 +1026,7 @@ def _remove_build_keys(obj):
10261026
package_data[key] = value
10271027

10281028
# timestamp defaults to now if not specified
1029-
if "timestamp" not in package_data:
1029+
if not package_data.get("timestamp"):
10301030
package_data["timestamp"] = int(time.time())
10311031

10321032
# format version is always set

0 commit comments

Comments
 (0)