If you choose to download a copy of jQuery, is it best practice to name it with a version identifier or without? That is to say, jquery-min.js versus jquery-1.10.2.min.js.
Clearly, the advantage of omitting the version identifier is that you don't have to change your source code when you upgrade. But the advantage of keeping it is that it's immediately obvious what the version is.
I'm curious what's the best practice here. I see that StackExchange hardcodes the link to Google APIs, and that they're still using version 1.7.1. If they were to upgrade, they'd have to do a "Replace All" on all their static files. Is this normal or undesirable?