Find first Julia version with a particular commit?

I need to create a block of code that distinguishes between Julia versions before and after
https://github.com/JuliaLang/julia/commit/9b51302a295880bbcb1d2f1c6e098722c424d025

How do I go about finding the Julia version number for the condition?

Use the contrib/commit-name.sh script included in the julia git repo:

unix% contrib/commit-name.sh 9b51302a295880bbcb1d2f1c6e098722c424d025
0.7.0-DEV.393
4 Likes

Thanks