Skip to content

Commit

Permalink
Merge pull request #278 from Lnaden/071patches
Browse files Browse the repository at this point in the history
Version reported by Server to Portal Client is always 3 groups
  • Loading branch information
dgasmith committed May 28, 2019
2 parents 5e464fb + f03e849 commit edd2893
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions docs/qcfractal/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,16 @@ Changelog
.. Bug Fixes
.. +++++++++
0.7.1 / 2019-05-28
------------------

Bug Fixes
+++++++++

- (:pr:`277`) A more informative error is thrown when Mongo is not found by ``FractalSnowflake``.
- (:pr:`277`) ID's are no longer presented when listing Collections in Portal to minimize extra data.
- (:pr:`278`) Fixed a bug in Portal where the Server was not reporting the correct unit.

0.7.0 / 2019-05-27
------------------

Expand Down
4 changes: 2 additions & 2 deletions qcfractal/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,8 +230,8 @@ def __init__(
"heartbeat_frequency": self.heartbeat_frequency,
"version": get_information("version"),
"query_limit": self.storage.get_limit(1.e9),
"client_lower_version_limit": "0.7",
"client_upper_version_limit": "0.7"
"client_lower_version_limit": "0.7.0", # Must be XX.YY.ZZ
"client_upper_version_limit": "0.7.1" # Must be XX.YY.ZZ
}

endpoints = [
Expand Down

0 comments on commit edd2893

Please sign in to comment.