How can I check that project's version was released? [python]

Nyan Cat August 4, 2014

Hello,

I am using python-jira and trying to check if the Fix Version of the issue was released or not.

I can receive the ID and name of the version, but how can I check was it released or not?

>>> jira.version(versions[0].id)
<JIRA Version: name=u'SomeVersion', id=u'15750'>

I can get such information using REST API, like:

https://jira.somesite.ru/rest/api/2/version/15750

But I wonder if it is possible using python-jira module?

1 answer

0 votes
Jeff
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
August 7, 2016

There is an attribute called released that you can use to do this.

in your example above:

jira.version(versions[0].id).released

 

Will return True if the version is marked as released.

Suggest an answer

Log in or Sign up to answer