Skip to content

Commit

Permalink
Merge pull request #562 from nerdvegas/issue_561
Browse files Browse the repository at this point in the history
Fixed Regression in 2.24.0
  • Loading branch information
nerdvegas authored Jan 15, 2019
2 parents 06645fe + c1e8323 commit 63e6401
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 2.26.4 [[#562](https://github.com/nerdvegas/rez/pull/562)] Fixed Regression in 2.24.0

#### Addressed Issues

* [#561](https://github.com/nerdvegas/rez/issues/561) timestamp not written to installed package

## 2.26.3 [[#560](https://github.com/nerdvegas/rez/pull/560)] Package.py permissions issue

#### Addressed Issues
Expand Down
2 changes: 1 addition & 1 deletion src/rez/utils/_version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


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

try:
from rez.vendor.version.version import Version
Expand Down
2 changes: 1 addition & 1 deletion src/rezplugins/package_repository/filesystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -1026,7 +1026,7 @@ def _remove_build_keys(obj):
package_data[key] = value

# timestamp defaults to now if not specified
if "timestamp" not in package_data:
if not package_data.get("timestamp"):
package_data["timestamp"] = int(time.time())

# format version is always set
Expand Down

0 comments on commit 63e6401

Please sign in to comment.