latestReleasedVersion()

This function returns the name of the latest released version in the current issue's project. The version might also be archived!

The release dates are analyzed in ascending order, and by sequence (i.e., as shown in UI) in ascending order.


Bash
latestReleasedVersion() #Output: Text


Examples

Parser expression

Description

Bash
latestReleasedVersion()

This example returns the name of the latest released version, e.g.:

2.9.2

Output

This function returns a text


Variant where you additionally define multiple projects.

The returned version is the latest version across all projectsProject keys or project names may be entered as a comma-separated list.


Bash
latestReleasedVersion(projects) #Output: Text


Examples

Parser expression

Description

Bash
latestReleasedVersion("JWT, ATJ")

This example returns the name of the latest released version across all projects,e.g.:

3.1

Additional information

Parameters used in this function

Parameter

Input (data type)

Description

projects

text

Text including valid project keys or names in a comma-separated list.

Output

This function returns a text


📚 Use cases and examples