Skip to content

Commit

Permalink
Bump version number - v1.11 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ewels committed Jul 5, 2021
1 parent 621ad7a commit 5206e04
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions .github/RELEASE_CHECKLIST.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,20 @@ This checklist is for my own reference, as I forget the steps every time.
- Check for any command line or javascript errors
- Check version numbers are printed correctly
7. Create new demo reports for the website

- Comment out any config in `~/.multiqc_config.yaml`

```bash
mv ~/.multiqc_config.yaml ~/.multiqc_config.yaml.bkup
```

```bash
mv ~/.multiqc_config.yaml.bkup ~/.multiqc_config.yaml
```

- Spot any previously unnoticed bugs and fix
- Upload to the website and push change to Git

8. Commit and push version updates
9. Make a [release](https://github.com/ewels/MultiQC/releases) on GitHub - paste changelog section.
10. Check that [PyPI listing page](https://pypi.python.org/pypi/multiqc/) looks sane
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# MultiQC Version History

## MultiQC v1.11dev
## [MultiQC v1.11](https://github.com/ewels/MultiQC/releases/tag/v1.11) - 2021-07-05

### MultiQC new features

Expand Down Expand Up @@ -57,7 +57,7 @@
- **Mosdepth**
- Include or exclude contigs based on patterns for coverage-per-contig plots
- **Picard**
- Add metrics from `CollectIlluminaBasecallingMetrics`, `CollectIlluminaLaneMetrics`, `ExtractIlluminaBarcodes` and `MarkIlluminaAdapters` ([#1336](https://github.com/ewels/MultiQC/pull/1336))
- Add support for `CollectIlluminaBasecallingMetrics`, `CollectIlluminaLaneMetrics`, `ExtractIlluminaBarcodes` and `MarkIlluminaAdapters` ([#1336](https://github.com/ewels/MultiQC/pull/1336))
- New `insertsize_xmax` configuration option to limit the plotted maximum insert size for `InsertSizeMetrics`
- **Qualimap**
- Added new percentage coverage plot in `QM_RNASeq` ([#1258](https://github.com/ewels/MultiQC/issues/1258))
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
from setuptools import setup, find_packages
import sys

version = "1.11dev"
version = "1.11"
dl_version = "master" if "dev" in version else "v{}".format(version)

print(
Expand Down

0 comments on commit 5206e04

Please sign in to comment.