I need to get an older version of Dart SDK to troubleshoot a problem. Specifically Dart SDK 1.5.1 but the current stable release on dartlang is 1.6.0.
Is there a URL that will get me all the past SDK releases for Linux or MacOs
I need to get an older version of Dart SDK to troubleshoot a problem. Specifically Dart SDK 1.5.1 but the current stable release on dartlang is 1.6.0.
Is there a URL that will get me all the past SDK releases for Linux or MacOs
There is now a nice page to select and download specific Dart versions https://www.dartlang.org/tools/download-archive/
Since a while there are also deb
packages available which can be installed using
sudo apt-get install dart=1.7.0-dev.0.1.*
see https://www.dartlang.org/tools/debian.html for more details.
Currently you can download from
http://gsdview.appspot.com/dart-archive/channels/stable/release/
The directories are build numbers not version numbers. The directories contain a VERSION
with detailed version information.
Other channels can be accessed by using
dev
or be
instead of stable
for development or bleeding edge builds.
A more user friendly way is work in progress.