Skip to content

Commit 06030ea

Browse files
committed
Release v0.10.0
1 parent 69210ec commit 06030ea

File tree

3 files changed

+7
-16
lines changed

3 files changed

+7
-16
lines changed

CHANGELOG.md

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
88
[Unreleased]: https://github.com/zellerlab/GECCO/compare/v0.9.10...master
99

1010

11-
## [v0.10.0-alpha.3] - 2025-08-13
12-
[v0.10.0-alpha.3]: https://github.com/zellerlab/GECCO/compare/v0.10.0-alpha.2...v0.10.0-alpha.3
11+
## [v0.10.0] - 2025-10-17
12+
[v0.10.0]: https://github.com/zellerlab/GECCO/compare/v0.9.10...v0.10.0
1313

1414
### Added
1515
- Support for changing the CLI argument defaults from a call to the `gecco.cli.main` function.
1616

17-
18-
## [v0.10.0-alpha.2] - 2025-08-13
19-
[v0.10.0-alpha.2]: https://github.com/zellerlab/GECCO/compare/v0.10.0-alpha.1...v0.10.0-alpha.2
20-
21-
### Fixed
22-
- `gecco.cli` and `gecco.crf` submodules not being included in wheel distribution.
23-
24-
25-
## [v0.10.0-alpha.1] - 2025-08-13
26-
[v0.10.0-alpha.1]: https://github.com/zellerlab/GECCO/compare/v0.9.10...v0.10.0-alpha.1
27-
2817
### Changed
18+
- Allow training with sequences only containing negative samples (with a warning).
2919
- Add an error in `gecco convert` when given input is not a folder.
3020
- Update `numpy`, `polars`, `pyhmmer` and `psutil` to latest versions.
3121
- Replace `docopt` with `argparse` parser for CLI argument parsing.
@@ -34,6 +24,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
3424
- Allow changing the default `ClusterCRF` and `TypeClassifier` classes used in `gecco.cli`.
3525

3626
### Fixed
27+
- `gecco.cli` and `gecco.crf` submodules not being included in wheel distribution.
3728
- `gecco convert` issue when given a relative path.
3829
- Unused `tqdm` import in `gecco.crf` module.
3930
- Unused build dependencies from `setup.cfg` and `pyproject.toml`.

galaxy/gecco.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version='1.0' encoding='utf-8'?>
2-
<tool id="gecco" name="GECCO" version="0.10.0-alpha.2" python_template_version="3.5">
2+
<tool id="gecco" name="GECCO" version="0.10.0" python_template_version="3.5">
33
<description>is a fast and scalable method for identifying putative novel Biosynthetic Gene Clusters (BGCs) in genomic and metagenomic data using Conditional Random Fields (CRFs).</description>
44
<creator>
55
<organization name="Zeller Team" url="https://www.embl.org/groups/zeller/"/>
@@ -11,7 +11,7 @@
1111
<edam_operation>operation_0415</edam_operation>
1212
</edam_operations>
1313
<requirements>
14-
<requirement type="package" version="0.10.0-alpha.2">gecco</requirement>
14+
<requirement type="package" version="0.10.0">gecco</requirement>
1515
</requirements>
1616
<version_command>gecco --version</version_command>
1717
<command detect_errors="aggressive"><![CDATA[

gecco/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010

1111
__author__ = "Martin Larralde"
1212
__license__ = "GPLv3"
13-
__version__ = "0.10.0-alpha.3"
13+
__version__ = "0.10.0"

0 commit comments

Comments
 (0)