Index: wp-includes/class-wp-theme.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- wp-includes/class-wp-theme.php	(revision 620abd39a18ae711b60fbfd7b57599acda842b99)
+++ wp-includes/class-wp-theme.php	(revision )
@@ -32,6 +32,7 @@
 		'AuthorURI'   => 'Author URI',
 		'Version'     => 'Version',
 		'Template'    => 'Template',
+		'Template_Version'  => 'Template Version',
 		'Status'      => 'Status',
 		'Tags'        => 'Tags',
 		'TextDomain'  => 'Text Domain',
@@ -337,7 +338,7 @@
 	 */
 	public function __isset( $offset ) {
 		static $properties = array(
-			'name', 'title', 'version', 'parent_theme', 'template_dir', 'stylesheet_dir', 'template', 'stylesheet',
+			'name', 'title', 'version', 'parent_theme', 'template_dir', 'stylesheet_dir', 'template', 'template_version', 'stylesheet',
 			'screenshot', 'description', 'author', 'tags', 'theme_root', 'theme_root_uri',
 		);
 
@@ -364,6 +365,12 @@
 				return $this->get_stylesheet_directory();
 			case 'template' :
 				return $this->get_template();
+			case 'template_version' :
+				if ( is_child_theme() ) {
+					return $this->parent()->get( 'Version' );
+				} else {
+					return null;
+				}
 			case 'stylesheet' :
 				return $this->get_stylesheet();
 			case 'screenshot' :
@@ -411,7 +418,7 @@
 	public function offsetExists( $offset ) {
 		static $keys = array(
 			'Name', 'Version', 'Status', 'Title', 'Author', 'Author Name', 'Author URI', 'Description',
-			'Template', 'Stylesheet', 'Template Files', 'Stylesheet Files', 'Template Dir', 'Stylesheet Dir',
+			'Template', 'Template Version', 'Stylesheet', 'Template Files', 'Stylesheet Files', 'Template Dir', 'Stylesheet Dir',
 			'Screenshot', 'Tags', 'Theme Root', 'Theme Root URI', 'Parent Theme',
 		);
 
@@ -451,6 +458,12 @@
 				return $this->get( $offset );
 			case 'Template' :
 				return $this->get_template();
+			case 'Template Version' :
+				if ( is_child_theme() ) {
+					return $this->parent()->get( 'Version' );
+				} else {
+					return null;
+				}
 			case 'Stylesheet' :
 				return $this->get_stylesheet();
 			case 'Template Files' :
