From 110249a26356876372b4a2875d2d525f44bd0c27 Mon Sep 17 00:00:00 2001 From: Stephen Steneker Date: Sat, 29 Oct 2022 09:23:55 +1100 Subject: [PATCH] Update for 1.7.1 release --- CHANGES.rst | 25 +++++++++++++++++++++++++ mtools/version.py | 2 +- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 5304383e..42d95140 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,31 @@ ================= Changes to mtools ================= +version 1.7.1 +~~~~~~~~~~~~~ + * mlaunch: Bump PyMongo requirement to 4.0+ (#884) + * mlaunch: Fix TLS issues (#885) + * mlaunch: Print rs initialization announcement prior to init (#868) + * mlaunch: Exit with unsuccessful status if replica set can't be + initiated after retries (#659) + * mlaunch: Fix version detection using configured mongod (#866) + * mlaunch: Sharded Cluster creation fails (#849) + * mlaunch: Use default SASL/SCRAM mechanisms when creating users (#880) + * mlaunch: Remove support for legacy SCCC config servers (#888) + * mlaunch: Improve diagnostics in mlaunch (#869) + * mlaunch: Output the log path when mongod/mongos launch (#877) + * mlaunch: Update default mongodb version to "0.0.0" (#878) + * mlaunch: Do not pass invalid option --auth to mongos (#870) + * mlaunch: docs incorrectly suggest --config can be used + for config file (#872) + * mloginfo: Improve --clients with more metadata info (#850) + * mloginfo: Cannot extract metadata from some log lines (#871) + * Fix dateutil dependency bug (#864) + * mtools[mlaunch] does not install with pymongo 4 (#856) + * Update dependencies and set upper version constraints (#889) + +Thanks to @stennie, @p-mongo, @autarch, @akung0324, @matthewdale, +and @ShaneHarvey for contributions to this release. version 1.7.0 ~~~~~~~~~~~~~ diff --git a/mtools/version.py b/mtools/version.py index e4b902df..10aa606a 100644 --- a/mtools/version.py +++ b/mtools/version.py @@ -1,4 +1,4 @@ #!/usr/bin/env python3 """Mtools version.""" -__version__ = '1.7.1-dev0' +__version__ = '1.7.1'