Skip to content

Commit

Permalink
Update to issue_export #110 JIR-20
Browse files Browse the repository at this point in the history
* Added multiple arguments to `issue_export()` method
  * It is now possible to perform export in JSON format
  * Added field exclusion and inclusion in CSV format export
* Added new methods `get_project_versions` and `issue_link_types` to access.py module
  • Loading branch information
princenyeche authored May 27, 2023
2 parents d2dfa06 + 9f14c1e commit 511f21f
Show file tree
Hide file tree
Showing 7 changed files with 3,051 additions and 473 deletions.
11 changes: 11 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Jira one change log

**Release 0.7.6** - 2023-05-27
### Minor update #110
* Added multiple arguments to `issue_export` method
* It is now possible to perform an export in JSON format
* Added field exclusion and inclusion in CSV format export
* Added new methods `get_project_versions` and `issue_link_types` to access.py module
* Added a `process_executor` function, regular express constants and a `DateFormat` class to
the utils module of jiraone.
* Added examples in documentations


**Release 0.7.5** - 2023-03-16
### Update #109
* Added a new condition to use encoding argument in `file_writer` in text mode
Expand Down
7 changes: 4 additions & 3 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@
Below shows the list of supported version for the jiraone library

| Version | Supported |
| ------- | ------------------ |
|---------|--------------------|
| 0.7.6 | :white_check_mark: |
| 0.7.5 | :white_check_mark: |
| 0.7.4 | :white_check_mark: |
| 0.7.3 | :white_check_mark: |
| 0.7.2 | :white_check_mark: |
| 0.7.1 | :white_check_mark: |
| 0.7.2 | :x: |
| 0.7.1 | :x: |
| 0.7.0 | :x: |
| 0.6.5 | :x: |
| 0.6.3 | :x: |
Expand Down
2 changes: 1 addition & 1 deletion jiraone/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
from jiraone.management import manage

__author__ = "Prince Nyeche"
__version__ = "0.7.5"
__version__ = "0.7.6"
__all__ = [
"LOGIN",
"endpoint",
Expand Down
Loading

0 comments on commit 511f21f

Please sign in to comment.