Skip to content

Commit 7105f4a

Browse files
authored
Merge pull request #288 from nf-core/dev
Release PR for 1.1.2
2 parents 34063c4 + 461784b commit 7105f4a

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
44
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
55

6+
## v1.1.2 - [2023-06-30]
7+
8+
### `Added`
9+
10+
### `Fixed`
11+
12+
- [#279](https://github.com/nf-core/funcscan/pull/279) Fix docker/podman registry definition for tower compatibility. (♥️ to sunitj for reporting, fix by @adamrtalbot)
13+
14+
### `Dependencies`
15+
16+
### `Deprecated`
17+
618
## v1.1.1 - [2023-05-24]
719

820
### `Added`

conf/base.config

+1
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ process {
115115
withName: DEEPARG_DOWNLOADDATA {
116116
memory = { check_max( 2.GB * task.attempt, 'memory' ) }
117117
cpus = 1
118+
time = { check_max( 2.h * task.attempt, 'time' ) }
118119
}
119120

120121
withName: DEEPARG_PREDICT {

nextflow.config

+7-3
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,6 @@ profiles {
259259
docker {
260260
conda.enabled = false
261261
docker.enabled = true
262-
docker.registry = 'quay.io'
263262
docker.userEmulation = true
264263
conda.enabled = false
265264
singularity.enabled = false
@@ -283,7 +282,6 @@ profiles {
283282
}
284283
podman {
285284
podman.enabled = true
286-
podman.registry = 'quay.io'
287285
conda.enabled = false
288286
docker.enabled = false
289287
singularity.enabled = false
@@ -350,6 +348,12 @@ env {
350348
// Capture exit codes from upstream processes when piping
351349
process.shell = ['/bin/bash', '-euo', 'pipefail']
352350

351+
// Set default registry for Docker and Podman independent of -profile
352+
// Will not be used unless Docker / Podman are enabled
353+
// Set to your registry if you have a mirror of containers
354+
docker.registry = 'quay.io'
355+
podman.registry = 'quay.io'
356+
353357
def trace_timestamp = new java.util.Date().format( 'yyyy-MM-dd_HH-mm-ss')
354358
timeline {
355359
enabled = true
@@ -375,7 +379,7 @@ manifest {
375379
description = """Pipeline for screening for functional components of assembled contigs"""
376380
mainScript = 'main.nf'
377381
nextflowVersion = '!>=22.10.1'
378-
version = '1.1.1'
382+
version = '1.1.2'
379383
doi = '10.5281/zenodo.7643099'
380384
}
381385

0 commit comments

Comments
 (0)