/// <summary> /// Creates a new version in an issue tracker. You must supply a name value in the form of a string. /// The server creates the id for you and it appears in the return value. /// Public and private issue trackers require the caller to authenticate with an account that has appropriate authorisation. /// </summary> /// <param name="version">The version.</param> /// <returns>The response from the BitBucket API.</returns> public Version PostVersion(Version version) { return(_repositoriesEndPoint.PostVersion(version)); }