How do I determine which platform version is required? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T05:56:00Zhttp://stackoverflow.com/feeds/question/633463http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/633463/how-do-i-determine-which-platform-version-is-required1How do I determine which platform version is required?Joonas Pulakka2009-03-11T05:37:23Z2009-03-11T08:04:06Z
<p>This frequently comes up: I've built software, and possibly used some new language / platform / standard library features that are available on some version (say, Java 1.6.10 or PHP 5.2) upwards, but of course I can't exactly remember. I'm only sure that it runs at least on the version I'm using (which is typically the newest version available), but it might well run on a bit older version too.</p>
<p>Going manually through the code, keeping a list and comparing it with platform release notes obviously isn't very sophisticated option. Is there a way to automatically do this (aside from baking your own version-checker parser)? Personally I'm interested in at least the following languages, but please add freely:</p>
<ul>
<li>Java</li>
<li>Python</li>
<li>PHP</li>
<li>C++ (and maybe C)</li>
<li>add your favorite.</li>
</ul>
<p>Simply testing at the older versions is a brute force approach, and it has the advantage that you'll know whether the code actually <em>works</em>, not merely that it <em>should</em> work. But it can be tedious, so I'm still interested in some kind of automata that goes through the source and checks which platform features are being used.</p>
http://stackoverflow.com/questions/633463/how-do-i-determine-which-platform-version-is-required/633465#6334652Answer by MrValdez for How do I determine which platform version is required?MrValdez2009-03-11T05:39:38Z2009-03-11T05:39:38Z<p>Continuous integration's Build Automation is the first thing that comes to mind. If you're testing against different machines, you'll discover which version breaks your code.</p>