commit 0f9bbf102c8fc9f137ec00a106e89d439d6e022b Author: Georg Koppen gk@torproject.org Date: Sat Jun 10 18:41:24 2017 +0000
Bug 22558: Don't update OS X 10.7.x and 10.8.x users to Tor Browser 7.0
"10.9" was the wrong `minSupportedOSVersion` for preventing OS X 10.7.x and 10.8.x users from getting updated to Tor Browser 7. That it worked for OS X 10.6.x was only by chance according to the release history table (https://en.wikipedia.org/wiki/Darwin_(operating_system)#Release_history).
We fix that by choosing "13.0.0" (for OS X 10.9 as minimum). --- tools/update-responses/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/update-responses/config.yml b/tools/update-responses/config.yml index 9dfedd3..4028f71 100644 --- a/tools/update-responses/config.yml +++ b/tools/update-responses/config.yml @@ -50,6 +50,6 @@ versions: win32: minSupportedInstructionSet: SSE2 osx32: - minSupportedOSVersion: 10.9 + minSupportedOSVersion: 13.0.0 osx64: - minSupportedOSVersion: 10.9 + minSupportedOSVersion: 13.0.0
tor-commits@lists.torproject.org