Micro update 57
* Added two new functions used by organization users such as `bulk_change_email` and `bulk_change_swap_email` in the `jiraone.module`. It makes use of the organization API that was released in 54
For example
python
from jiraone.module import bulk_change_email
token = "Vhsj28UJsXXX"
file = "user.csv"
bulk_change_email(file, token)
A CSV file needs to be added to the same directory the script is running from
The format of the CSV file has to be in the below format of max 4 columns
id,current_email, name, target_email
processes the information.