Skip to content

Commit

Permalink
Merge pull request #901 from safe-global/release-v2.59.0
Browse files Browse the repository at this point in the history
Backmerge release 2.59.0
  • Loading branch information
hectorgomezv authored Jul 7, 2023
2 parents 77d0ec2 + c3a5943 commit 28f4f14
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/about/tests/test_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def test_json_payload_format(self):
url = reverse("v1:about:detail")
expected_json_response = {
"name": "Safe Config Service",
"version": "2.58.0",
"version": "2.59.0",
"apiVersion": "v1",
"secure": False,
}
Expand All @@ -24,7 +24,7 @@ def test_https_request(self):
url = reverse("v1:about:detail")
expected_json_response = {
"name": "Safe Config Service",
"version": "2.58.0",
"version": "2.59.0",
"api_version": "v1",
"secure": True,
}
Expand All @@ -38,7 +38,7 @@ def test_http_request(self):
url = reverse("v1:about:detail")
expected_json_response = {
"name": "Safe Config Service",
"version": "2.58.0",
"version": "2.59.0",
"api_version": "v1",
"secure": False,
}
Expand Down
2 changes: 1 addition & 1 deletion src/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__name__ = "Safe Config Service"
__version__ = "2.58.0"
__version__ = "2.59.0"

0 comments on commit 28f4f14

Please sign in to comment.