Skip to content

Commit 16ee617

Browse files
committed
Release v3.5.0
1 parent 23ab7de commit 16ee617

File tree

4 files changed

+28
-3
lines changed

4 files changed

+28
-3
lines changed

CHANGELOG.md

+19-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,25 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77

88
## [Unreleased]
9-
[Unreleased]: https://github.com/althonos/pyrodigal/compare/v3.4.0...HEAD
9+
[Unreleased]: https://github.com/althonos/pyrodigal/compare/v3.5.0...HEAD
10+
11+
12+
## [v3.5.0] - 2024-07-17
13+
[v3.5.0]: https://github.com/althonos/pyrodigal/compare/v3.4.1...v3.5.0
14+
15+
### Added
16+
- Support for reading from `stdin` in CLI ([#35](https://github.com/althonos/pyrodigal/issues/35)).
17+
- Flag for changing parallel computation to use `Pool` instead of `ThreadPool` ([#57](https://github.com/althonos/pyrodigal/issues/57)).
18+
- Better documentation of command line interface ([#56](https://github.com/althonos/pyrodigal/issues/56)).
19+
- Allow changing the formatter class in `pyrodigal.cli.argument_parser`.
20+
21+
### Changed
22+
- Migrate documentation to `pydata-sphinx-theme`.
23+
24+
### Fixed
25+
- Cython warnings with unused `except *` statements in `MetagenomicBins`.
26+
- Signatures of `__init__` methods missing from all Cython types after the `v3.0` update.
27+
- Small typos in documentation.
1028

1129

1230
## [v3.4.1] - 2024-05-23

docs/_static/json/switcher.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
[
2+
{
3+
"name": "v3.5 (stable)",
4+
"version": "3.5.0",
5+
"url": "https://pyrodigal.readthedocs.io/en/v3.5.0/"
6+
},
27
{
38
"name": "v3.4 (stable)",
49
"version": "3.4.1",
@@ -34,4 +39,4 @@
3439
"version": "1.1.2",
3540
"url": "https://pyrodigal.readthedocs.io/en/v1.1.2/"
3641
}
37-
]
42+
]

docs/guide/cli.rst

+2
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ of Pyrodigal, such as multi-threading or smaller gene prediction:
5151
--max-overlap MAX_OVERLAP The maximum number of nucleotides that can overlap between two genes on the same strand.
5252
This must be lower or equal to the minimum gene length.
5353
--no-stop-codon Disables translation of stop codons into star characters (*) for complete genes.
54+
--pool {thread,process} The sort of pool to use to process genomes in parallel. Processes may be faster than
55+
threads on some machines, refer to documentation. (default: thread)
5456
5557
Piping
5658
------

pyrodigal/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.4.1"
1+
__version__ = "3.5.0"

0 commit comments

Comments
 (0)