diff --git a/CHANGELOG.md b/CHANGELOG.md index d2181fa..febb815 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,12 +11,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added -Command `status` has now a `--hashes` option that list current HEAD hash for each component. - ### Changed ### Removed +## [1.50.0] - 2023-08-17 + +### Added + +- Command `status` has now a `--hashes` option that list current HEAD hash for each component. + ## [1.49.0] - 2023-01-25 ### Changed diff --git a/mepo.d/utest/test_mepo_commands.py b/mepo.d/utest/test_mepo_commands.py index b3c386d..87d12af 100644 --- a/mepo.d/utest/test_mepo_commands.py +++ b/mepo.d/utest/test_mepo_commands.py @@ -74,6 +74,7 @@ def test_status(self): sys.stdout = output = StringIO() args.ignore_permissions=False args.nocolor=True + args.hashes=False mepo_status.run(args) sys.stdout = sys.__stdout__ with open(os.path.join(self.__class__.output_dir, 'status_output.txt'), 'r') as fin: