Include specification revision as part of the version string.
diff --git a/SPIRV/GlslangToSpv.cpp b/SPIRV/GlslangToSpv.cpp
index d916f6e..7f9214c 100644
--- a/SPIRV/GlslangToSpv.cpp
+++ b/SPIRV/GlslangToSpv.cpp
@@ -2545,9 +2545,9 @@
 
 void GetSpirvVersion(std::string& version)
 {
-    const int bufSize = 10;
+    const int bufSize = 100;
     char buf[bufSize];
-    snprintf(buf, bufSize, "0.%d", spv::Version);
+    snprintf(buf, bufSize, "%d, Revision %d", spv::Version, spv::Revision);
     version = buf;
 }