Skip to content

Commit

Permalink
Release v0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Jan 29, 2021
1 parent f699e99 commit 2007fda
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 7 deletions.
7 changes: 3 additions & 4 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ deploy:changelog:
- chandler push --github="zellerlab/GECCO" --changelog="CHANGELOG.md"

deploy:releases:
image: python3.9
image: python:3.9
stage: deploy
only:
- tags
Expand All @@ -144,10 +144,9 @@ deploy:releases:
- wget "https://github.com/github-release/github-release/releases/download/v0.10.0/linux-amd64-github-release.bz2" -O- | bunzip2 > ./github-release
- chmod +x ./github-release
script:
- python setup.py build_data --inplace
- python setup.py build_data --inplace --rebuild
after_script:
- for hmm in gecco/hmmer/*.h3m; do gzip $hmm; done
- for hmm in gecco/hmmer/*.h3m; do gzip $hmm | ./github-release upload --user zellerlab --repo GECCO --tag $CI_COMMIT_TAG --name $(basename $hmm).gz --file -; done
- for hmm in gecco/hmmer/*.h3m; do gzip $hmm; ./github-release upload --user zellerlab --repo GECCO --tag "$CI_COMMIT_TAG" --name "$(basename $hmm).gz" --file "$hmm.gz" ; done

deploy:sdist:
image: python:3.9
Expand Down
15 changes: 13 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,22 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
[Unreleased]: https://git.embl.de/grp-zeller/GECCO/compare/v0.5.1...master
[Unreleased]: https://git.embl.de/grp-zeller/GECCO/compare/v0.5.2...master

## [v0.5.2] - 2021-01-29
[v0.5.1]: https://git.embl.de/grp-zeller/GECCO/compare/v0.5.1...v0.5.2
### Added
- Support for downloading HMM files directly from GitHub releases assets.
- Validation of filtered HMMs with MD5 checksum.
### Fixed
- Invalid coordinates of protein domains in GenBank output files.
- `gecco.interpro` module not being added to wheel distribution.
### Changed
- Bump required `pyhmmer` version to`v0.2.1`.

## [v0.5.1] - 2021-01-15
[v0.5.1]: https://git.embl.de/grp-zeller/GECCO/compare/v0.5.0...v0.5.1
### Fixed
### Fixed
- `--hmm` flag being ignored in in `gecco run` command.
- `PyHMMER` using HMM names instead of accessions, causing issues with Pfam HMMs.

Expand Down
2 changes: 1 addition & 1 deletion gecco/_version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.1
0.5.2

0 comments on commit 2007fda

Please sign in to comment.