From 488a0bbaf0b1b517dadfa9d4d1b855d02ea7dadb Mon Sep 17 00:00:00 2001 From: kevthehermit Date: Tue, 3 Jan 2017 14:49:37 +0000 Subject: [PATCH] 1.2 Release Prep --- CHANGELOG.md | 26 +++++++++++++++++++++++++- web/common.py | 2 +- 2 files changed, 26 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b532c8e..c008670 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,26 @@ ## [Unreleased](https://github.com/kevthehermit/VolUtility/tree/HEAD) -[Full Changelog](https://github.com/kevthehermit/VolUtility/compare/v1.0...HEAD) +[Full Changelog](https://github.com/kevthehermit/VolUtility/compare/v1.1...HEAD) + +**Implemented enhancements:** + +- Authentication request [\#66](https://github.com/kevthehermit/VolUtility/issues/66) + +**Closed issues:** + +- MD5 calculations not correct when recursively adding memory images [\#70](https://github.com/kevthehermit/VolUtility/issues/70) +- 3rd Party Plugins not seen if memory image already loaded [\#69](https://github.com/kevthehermit/VolUtility/issues/69) +- Refresh Timer Issue [\#68](https://github.com/kevthehermit/VolUtility/issues/68) +- KeyError: 'extensions' [\#65](https://github.com/kevthehermit/VolUtility/issues/65) +- Error 500 issues on most plugins [\#64](https://github.com/kevthehermit/VolUtility/issues/64) + +**Merged pull requests:** + +- Authentication [\#72](https://github.com/kevthehermit/VolUtility/pull/72) ([kevthehermit](https://github.com/kevthehermit)) + +## [v1.1](https://github.com/kevthehermit/VolUtility/tree/v1.1) (2016-12-01) +[Full Changelog](https://github.com/kevthehermit/VolUtility/compare/v1.0...v1.1) **Implemented enhancements:** @@ -27,6 +46,11 @@ **Merged pull requests:** +- Merge Devlop with Master [\#63](https://github.com/kevthehermit/VolUtility/pull/63) ([kevthehermit](https://github.com/kevthehermit)) +- Merge pull request \#61 from kevthehermit/develop [\#62](https://github.com/kevthehermit/VolUtility/pull/62) ([kevthehermit](https://github.com/kevthehermit)) +- Merge pull request \#60 from kevthehermit/master [\#61](https://github.com/kevthehermit/VolUtility/pull/61) ([kevthehermit](https://github.com/kevthehermit)) +- Merge [\#60](https://github.com/kevthehermit/VolUtility/pull/60) ([kevthehermit](https://github.com/kevthehermit)) +- Change the spinner overlay colour [\#59](https://github.com/kevthehermit/VolUtility/pull/59) ([kevthehermit](https://github.com/kevthehermit)) - Update Vagrant file [\#58](https://github.com/kevthehermit/VolUtility/pull/58) ([kevthehermit](https://github.com/kevthehermit)) - Update CuckooSandbox Extension [\#57](https://github.com/kevthehermit/VolUtility/pull/57) ([kevthehermit](https://github.com/kevthehermit)) - Update VirusTotal Extension [\#54](https://github.com/kevthehermit/VolUtility/pull/54) ([kevthehermit](https://github.com/kevthehermit)) diff --git a/web/common.py b/web/common.py index 0d90c65..9d7a1f2 100644 --- a/web/common.py +++ b/web/common.py @@ -13,7 +13,7 @@ from commands import getoutput logger = logging.getLogger(__name__) -volutility_version = '1.1-dev' +volutility_version = '1.2' volrc_file = os.path.join(os.path.expanduser('~'), '.volatilityrc')