diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..81f67dd --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,9 @@ +# Changelog + +## 0.6.1 +- Security update: bump psutil to 5.6.6 + +## 0.6 +- Added lacking tasks.py and README.md +- Added dumping CHANGELOG.md mechanism + diff --git a/requirements/app.txt b/requirements/app.txt index 9c55541..be9ddbb 100644 --- a/requirements/app.txt +++ b/requirements/app.txt @@ -1,4 +1,4 @@ galaxy.plugin.api==0.55 python-dateutil==2.8.0 requests==2.21.0 -psutil==5.6.1 +psutil==5.6.6 diff --git a/src/version.py b/src/version.py index f903fce..a7987a8 100644 --- a/src/version.py +++ b/src/version.py @@ -1,6 +1,9 @@ -__version__ = "0.6" +__version__ = "0.6.1" __changelog__ = { + "0.6.1": ''' + - Security update: bump psutil to 5.6.6 + ''', "0.6": ''' - Added lacking tasks.py and README.md - Added dumping CHANGELOG.md mechanism