Skip to content

Commit

Permalink
JIR-25 fix to reported bug
Browse files Browse the repository at this point in the history
* Adding requirements.txt
* Updated bug fixes and improvements
  • Loading branch information
princenyeche authored Jan 1, 2024
2 parents 7f1aab9 + 456e273 commit 66ea15f
Show file tree
Hide file tree
Showing 9 changed files with 477 additions and 347 deletions.
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Jira one change log

**Release 0.8.0** - 2024-01-01
### Minor update #123
- Fix to issue reported on #124
- Corrected the documentation
- Minimized arguments on each method or function to max 5, then the rest are called via keyword arguments
- Added a new function for argument validation called `validate_argument_name`


**Release 0.7.9** - 2023-12-23
### Minor update #115
* Update to `time_in_status` function to include timestamp in UTC
Expand Down
1 change: 1 addition & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Below shows the list of supported versions for the jiraone library

| Version | Supported |
|---------|--------------------|
| 0.8.0 | :white_check_mark: |
| 0.7.9 | :white_check_mark: |
| 0.7.8 | :white_check_mark: |
| 0.7.7 | :white_check_mark: |
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

# -- Project information -----------------------------------------------------

project = 'Jira one'
project = 'jiraone'
copyright = '2021, Prince Nyeche'
author = 'Prince Nyeche'

Expand Down
8 changes: 8 additions & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
sphinxcontrib-httpdomain==1.7.0
jiraone
sphinx-autoapi
sphinx
scipy
numpy
pandas
matplotlib
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "jiraone"
version = "v0.7.9"
version = "v0.8.0"
authors = [
{ name="Prince Nyeche", email="[email protected]" },
]
Expand Down
2 changes: 1 addition & 1 deletion src/jiraone/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
from jiraone.management import manage

__author__ = "Prince Nyeche"
__version__ = "0.7.9"
__version__ = "0.8.0"
__all__ = [
"LOGIN",
"endpoint",
Expand Down
Loading

0 comments on commit 66ea15f

Please sign in to comment.