From 19a24bad6c0c2393a2769ae165dc8127e713a576 Mon Sep 17 00:00:00 2001 From: Matthew Thompson Date: Thu, 17 Aug 2023 12:04:02 -0400 Subject: [PATCH 1/2] Update changelog for 1.50 release --- CHANGELOG.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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 From 88a70c48879976a0ade82d4cb11adbc41d423317 Mon Sep 17 00:00:00 2001 From: Matthew Thompson Date: Thu, 17 Aug 2023 13:15:28 -0400 Subject: [PATCH 2/2] Have to update the unit test for status --- mepo.d/utest/test_mepo_commands.py | 1 + 1 file changed, 1 insertion(+) 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: