adding pkg and action version number with interpolation (#1009)

diff --git a/parsers/manifest_parser.go b/parsers/manifest_parser.go
index 619cf91..dcbc0ed 100644
--- a/parsers/manifest_parser.go
+++ b/parsers/manifest_parser.go
@@ -381,6 +381,7 @@
 		wskprint.PrintOpenWhiskWarning(warningString)
 		pkg.Version = DEFAULT_PACKAGE_VERSION
 	}
+	pag.Version = wskenv.ConvertSingleName(pkg.Version)
 
 	//License is a mandatory value
 	//set license to unknown if it is an empty string
@@ -933,6 +934,7 @@
 		wskaction.Name = actionName
 		pub := false
 		wskaction.Publish = &pub
+		wskaction.Version = wskenv.ConvertSingleName(action.Version)
 
 		record := utils.ActionRecord{Action: wskaction, Packagename: packageName, Filepath: actionFilePath}
 		listOfActions = append(listOfActions, record)