Skip to content

Commit e2bf81e

Browse files
committed
Create release 0.75.30
1 parent 6a4c364 commit e2bf81e

35 files changed

+279
-278
lines changed

HISTORY.rst

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,19 @@ History
66
.. to_doc
77
88
---------------------
9-
0.75.30.dev0
9+
0.75.30 (2025-05-07)
1010
---------------------
11+
* fix lint_shed_version if there are no installable revisions (thanks to
12+
`@bernt-matthias`_). `Pull Request 1509`_
13+
* Fix bumping of dev versions (thanks to `@mvdbeek`_). `Pull Request 1514`_
14+
* Don't escape non-ascii unicode characters in json.dumps (thanks to
15+
`@mvdbeek`_). `Pull Request 1523`_
16+
* Fix version linter for new repos (thanks to `@bernt-matthias`_). `Pull
17+
Request 1519`_
18+
* Add switch to prevent early termination of workflow runs (thanks to
19+
`@kostrykin`_). `Pull Request 1518`_
20+
* Add missing collection operation tools (thanks to `@mvdbeek`_). `Pull
21+
Request 1524`_
1122

1223
---------------------
1324
0.75.29 (2025-03-27)
@@ -2195,6 +2206,12 @@ History
21952206
tools - and more experimental features involving Docker and Homebrew. 7d07782_
21962207

21972208
.. github_links
2209+
.. _Pull Request 1509: https://github.com/galaxyproject/planemo/pull/1509
2210+
.. _Pull Request 1514: https://github.com/galaxyproject/planemo/pull/1514
2211+
.. _Pull Request 1523: https://github.com/galaxyproject/planemo/pull/1523
2212+
.. _Pull Request 1519: https://github.com/galaxyproject/planemo/pull/1519
2213+
.. _Pull Request 1518: https://github.com/galaxyproject/planemo/pull/1518
2214+
.. _Pull Request 1524: https://github.com/galaxyproject/planemo/pull/1524
21982215
.. _Pull Request 1507: https://github.com/galaxyproject/planemo/pull/1507
21992216
.. _Pull Request 1505: https://github.com/galaxyproject/planemo/pull/1505
22002217
.. _Pull Request 1504: https://github.com/galaxyproject/planemo/pull/1504
@@ -3171,3 +3188,4 @@ History
31713188
.. _@jdavcs: https://github.com/jdavcs
31723189
.. _@Smeds: https://github.com/Smeds
31733190
.. _@jmchilton: https://github.com/jmchilton
3191+
.. _@kostrykin: https://github.com/kostrykin

docs/commands/clone.rst

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,13 @@ For instance, the following will clone, fork, and branch the tools-iuc
1818
repository to allow a subsequent pull request to fix a problem with bwa.
1919

2020

21-
::
22-
23-
$ planemo clone --branch bwa-fix tools-iuc
24-
$ cd tools-iuc
25-
$ # Make changes.
26-
$ git add -p # Add desired changes.
27-
$ git commit -m "Fix bwa problem."
28-
$ planemo pull_request -m "Fix bwa problem."
21+

22+
$ planemo clone --branch bwa-fix tools-iuc
23+
$ cd tools-iuc
24+
$ # Make changes.
25+
$ git add -p # Add desired changes.
26+
$ git commit -m "Fix bwa problem."
27+
$ planemo pull_request -m "Fix bwa problem."
2928

3029
These changes do require that a github access token is
3130
specified in ~/.planemo.yml. An access token can be generated by going

docs/commands/conda_env.rst

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,13 @@ Activate a conda environment for tool.
1717
Source the output of this command to activate a conda environment for this
1818
tool.
1919

20-
::
21-
22-
$ . <(planemo conda_env seqtk_seq.xml)
23-
Deactivate environment with conda_env_deactivate
24-
(seqtk_seq_v6) $ which seqtk
25-
/home/planemo/miniconda2/envs/jobdepsDkzcjjfecc6d406196737781ff4456ec60975c137e04884e4f4b05dc68192f7cec4656/bin/seqtk
26-
(seqtk_seq_v6) $ conda_env_deactivate
27-
$
20+

21+
$ . <(planemo conda_env seqtk_seq.xml)
22+
Deactivate environment with conda_env_deactivate
23+
(seqtk_seq_v6) $ which seqtk
24+
/home/planemo/miniconda2/envs/jobdepsDkzcjjfecc6d406196737781ff4456ec60975c137e04884e4f4b05dc68192f7cec4656/bin/seqtk
25+
(seqtk_seq_v6) $ conda_env_deactivate
26+
$
2827

2928

3029
**Options**::

docs/commands/database_create.rst

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,13 @@ distros this file is in /etc/postgresql/<postgres_version>/main/ directory).
3333
Adding the following lines to that file will allow planemo and Galaxy to
3434
access the databases without a password.
3535

36-
::
37-
38-
# "local" is for Unix domain socket connections only
39-
local all all trust
40-
# IPv4 local connections:
41-
host all all 127.0.0.1/32 trust
42-
# IPv6 local connections:
43-
host all all ::1/128 trust
36+

37+
# "local" is for Unix domain socket connections only
38+
local all all trust
39+
# IPv4 local connections:
40+
host all all 127.0.0.1/32 trust
41+
# IPv6 local connections:
42+
host all all ::1/128 trust
4443

4544
More information on the ``pg_hda.conf`` configuration file can be found at
4645
http://www.postgresql.org/docs/9.3/static/auth-pg-hba-conf.html.
@@ -50,9 +49,8 @@ http://www.postgresql.org/docs/9.4/static/libpq-pgpass.html. In Ubuntu and
5049
Debian distros - a postgres user likely already exists and its password can
5150
be set by setting up a file ``~/.pgpass`` file with the following contents.
5251

53-
::
54-
55-
*:*:*:postgres:<postgres_password>
52+

53+
*:*:*:postgres:<postgres_password>
5654
5755
**Options**::
5856

docs/commands/database_delete.rst

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,13 @@ distros this file is in /etc/postgresql/<postgres_version>/main/ directory).
3333
Adding the following lines to that file will allow planemo and Galaxy to
3434
access the databases without a password.
3535

36-
::
37-
38-
# "local" is for Unix domain socket connections only
39-
local all all trust
40-
# IPv4 local connections:
41-
host all all 127.0.0.1/32 trust
42-
# IPv6 local connections:
43-
host all all ::1/128 trust
36+

37+
# "local" is for Unix domain socket connections only
38+
local all all trust
39+
# IPv4 local connections:
40+
host all all 127.0.0.1/32 trust
41+
# IPv6 local connections:
42+
host all all ::1/128 trust
4443

4544
More information on the ``pg_hda.conf`` configuration file can be found at
4645
http://www.postgresql.org/docs/9.3/static/auth-pg-hba-conf.html.
@@ -50,9 +49,8 @@ http://www.postgresql.org/docs/9.4/static/libpq-pgpass.html. In Ubuntu and
5049
Debian distros - a postgres user likely already exists and its password can
5150
be set by setting up a file ``~/.pgpass`` file with the following contents.
5251

53-
::
54-
55-
*:*:*:postgres:<postgres_password>
52+

53+
*:*:*:postgres:<postgres_password>
5654
5755
**Options**::
5856

docs/commands/database_list.rst

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,13 @@ distros this file is in /etc/postgresql/<postgres_version>/main/ directory).
3333
Adding the following lines to that file will allow planemo and Galaxy to
3434
access the databases without a password.
3535

36-
::
37-
38-
# "local" is for Unix domain socket connections only
39-
local all all trust
40-
# IPv4 local connections:
41-
host all all 127.0.0.1/32 trust
42-
# IPv6 local connections:
43-
host all all ::1/128 trust
36+

37+
# "local" is for Unix domain socket connections only
38+
local all all trust
39+
# IPv4 local connections:
40+
host all all 127.0.0.1/32 trust
41+
# IPv6 local connections:
42+
host all all ::1/128 trust
4443

4544
More information on the ``pg_hda.conf`` configuration file can be found at
4645
http://www.postgresql.org/docs/9.3/static/auth-pg-hba-conf.html.
@@ -50,9 +49,8 @@ http://www.postgresql.org/docs/9.4/static/libpq-pgpass.html. In Ubuntu and
5049
Debian distros - a postgres user likely already exists and its password can
5150
be set by setting up a file ``~/.pgpass`` file with the following contents.
5251

53-
::
54-
55-
*:*:*:postgres:<postgres_password>
52+

53+
*:*:*:postgres:<postgres_password>
5654
5755
**Options**::
5856

docs/commands/docker_build.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,9 @@ This command will then build and tag the image so it is ready to be tested
2424
and published. The docker_shell command be used to test out the built
2525
image.
2626

27-
::
28-
29-
% planemo docker_build bowtie2.xml # asssumes Dockerfile in same dir
30-
% planemo docker_shell --from_tag bowtie2.xml
27+

28+
% planemo docker_build bowtie2.xml # asssumes Dockerfile in same dir
29+
% planemo docker_shell --from_tag bowtie2.xml
3130

3231
This can optionally also cache the images.
3332

docs/commands/docker_shell.rst

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,10 @@ Will launch a shell in the Docker container referenced by the specified
1818
tool. Prints a command to do this the way Galaxy would in job files it
1919
generates - so be sure to wrap this in $(...) to launch the subshell.
2020

21-
::
22-
23-
$ $(planemo docker_shell bowtie2.xml)
24-
...
25-
root@b8754062f875:/#
21+

22+
$ $(planemo docker_shell bowtie2.xml)
23+
...
24+
root@b8754062f875:/#
2625

2726

2827
**Options**::

docs/commands/normalize.rst

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,16 @@ the output as is - it frequently makes tool less readable not more.
2222
The top-level blocks will be reordered and whitespace fixed according to
2323
the tool development best practices outlined on the Galaxy wiki.
2424

25-
::
26-
27-
% # Print normalized version of tool.
28-
% planemo normalize tool.xml
29-
<tool>
30-
...
31-
% # Print a variant of tool with all macros expanded out, useful for
32-
% # debugging complex macros.
33-
% planemo normalize --expand_macros tool.xml
34-
<tool>
35-
...
25+

26+
% # Print normalized version of tool.
27+
% planemo normalize tool.xml
28+
<tool>
29+
...
30+
% # Print a variant of tool with all macros expanded out, useful for
31+
% # debugging complex macros.
32+
% planemo normalize --expand_macros tool.xml
33+
<tool>
34+
...
3635

3736
**Options**::
3837

docs/commands/pull_request.rst

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,13 @@ Short-cut to quickly create a pull request for a relevant Github repo.
1717
For instance, the following will clone, fork, and branch the tools-iuc
1818
repository to allow a subsequent pull request to fix a problem with bwa.
1919

20-
::
21-
22-
$ planemo clone --branch bwa-fix tools-iuc
23-
$ cd tools-iuc
24-
$ # Make changes.
25-
$ git add -p # Add desired changes.
26-
$ git commit -m "Fix bwa problem."
27-
$ planemo pull_request -m "Fix bwa problem."
20+

21+
$ planemo clone --branch bwa-fix tools-iuc
22+
$ cd tools-iuc
23+
$ # Make changes.
24+
$ git add -p # Add desired changes.
25+
$ git commit -m "Fix bwa problem."
26+
$ planemo pull_request -m "Fix bwa problem."
2827

2928
These changes do require that a github access token is
3029
specified in ~/.planemo.yml. An access token can be generated by going

0 commit comments

Comments
 (0)