From 6a4d2151c908d75a9ac04f1a7246d1982b3ebaca Mon Sep 17 00:00:00 2001 From: Etienne Trimaille Date: Thu, 27 Oct 2022 19:46:13 +0200 Subject: [PATCH] Release 1.3.2 --- CHANGELOG.md | 6 ++++++ qgis_plugin_manager/__main__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e90d91a..477bae9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## Unreleased +## 1.3.2 - 2022-10-27 + +### Fixed + +* Regression from 1.3.0 about the `update` command + ## 1.3.1 - 2022-10-27 ### Fixed diff --git a/qgis_plugin_manager/__main__.py b/qgis_plugin_manager/__main__.py index 981dcdb..d22523c 100755 --- a/qgis_plugin_manager/__main__.py +++ b/qgis_plugin_manager/__main__.py @@ -84,7 +84,7 @@ def main() -> int: # noqa: C901 for result in results: print(result) - elif args.command in ("remote", ): + elif args.command in ("update", ): # Remote only needed, QGIS version needed remote = Remote(plugin_path, qgis_server_version()) if args.command == "update":