From 4d5b957205d8306f6997945c456f0cb723f7ad58 Mon Sep 17 00:00:00 2001 From: mvdbeek Date: Wed, 18 Oct 2023 12:07:29 +0200 Subject: [PATCH] Prepare release 0.75.13 --- HISTORY.rst | 12 ++++++++++++ docs/commands/shed_lint.rst | 4 ++++ planemo/__init__.py | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index fce60031f..0c17cb5bd 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -5,6 +5,15 @@ History .. to_doc +--------------------- +0.75.13 (2023-10-18) +--------------------- +* Add --skip to shed_lint (thanks to `@bernt-matthias`_). `Pull Request 1394`_ +* Remove API key requirement from training_init (thanks to `@hexylena`_). + `Pull Request 1393`_ +* Try to fix planemo test workflow when output is collection with identical + name (thanks to `@lldelisle`_). `Pull Request 1391`_ + --------------------- 0.75.12 (2023-09-18) --------------------- @@ -2009,6 +2018,9 @@ History tools - and more experimental features involving Docker and Homebrew. 7d07782_ .. github_links +.. _Pull Request 1394: https://github.com/galaxyproject/planemo/pull/1394 +.. _Pull Request 1393: https://github.com/galaxyproject/planemo/pull/1393 +.. _Pull Request 1391: https://github.com/galaxyproject/planemo/pull/1391 .. _Pull Request 1389: https://github.com/galaxyproject/planemo/pull/1389 .. _Pull Request 1263: https://github.com/galaxyproject/planemo/pull/1263 .. _Pull Request 1387: https://github.com/galaxyproject/planemo/pull/1387 diff --git a/docs/commands/shed_lint.rst b/docs/commands/shed_lint.rst index 24aceb554..245b30ca1 100644 --- a/docs/commands/shed_lint.rst +++ b/docs/commands/shed_lint.rst @@ -34,6 +34,10 @@ help text for mentioned URLs and checks those. processing remaining repositories. --report_level [all|warn|error] --fail_level [warn|error] + -s, --skip TEXT Comma-separated list of lint tests to skip + (e.g. passing --skip 'citations,xml_order' + would skip linting of citations and best- + practice XML ordering. --tools Lint tools discovered in the process of linting repositories. --xsd / --no_xsd Include tool XSD validation in linting diff --git a/planemo/__init__.py b/planemo/__init__.py index 2110d14ce..6c1c817c6 100644 --- a/planemo/__init__.py +++ b/planemo/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.75.12" +__version__ = "0.75.13" PROJECT_NAME = "planemo"