diff --git a/.github/workflows/check-bioc.yml b/.github/workflows/check-bioc.yml index a351a0100..69e82e635 100644 --- a/.github/workflows/check-bioc.yml +++ b/.github/workflows/check-bioc.yml @@ -52,10 +52,9 @@ jobs: fail-fast: false matrix: config: - - { os: ubuntu-latest, r: 'devel', bioc: '3.19', cont: "bioconductor/bioconductor_docker:devel", rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest" } - - { os: fedora-latest, r: 'devel', bioc: '3.19', cont: "bioconductor/bioconductor_docker:devel", rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest" } - - { os: macOS-latest, r: 'devel', bioc: '3.19'} - - { os: windows-latest, r: 'devel', bioc: '3.19'} + - { os: ubuntu-latest, r: 'devel', bioc: '3.21', cont: "bioconductor/bioconductor_docker:devel", rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest" } + - { os: macOS-latest, r: 'devel', bioc: '3.21'} + - { os: windows-latest, r: 'devel', bioc: '3.21'} env: R_REMOTES_NO_ERRORS_FROM_WARNINGS: true RSPM: ${{ matrix.config.rspm }} diff --git a/DESCRIPTION b/DESCRIPTION index d0c0aaed7..5fdc53c99 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -2,13 +2,14 @@ Package: mzR Type: Package Title: parser for netCDF, mzXML and mzML and mzIdentML files (mass spectrometry data) -Version: 2.41.0 +Version: 2.41.1 Author: Bernd Fischer, Steffen Neumann, Laurent Gatto, Qiang Kou, Johannes Rainer Authors@R: c( person("Steffen", "Neumann", email="sneumann@ipb-halle.de", role=c("aut","cre")), person("Laurent", "Gatto", email="laurent.gatto@uclouvain.be", role=c("aut")), person("Qiakng", "Kou", email="qkou@umail.iu.edu", role=c("aut")), - person("David","Rauh",email="drauh@ipb-halle.de", role=c("ctb")) + person("David","Rauh",email="drauh@ipb-halle.de", role=c("ctb")), + person("Sascha","Manier",email="sascha.manier@uni-saarland.de", role=c("ctb")) ) Description: mzR provides a unified API to the common file formats and parsers available for mass spectrometry data. It comes with a diff --git a/NEWS b/NEWS index c0dd80691..d6cf359f2 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +CHANGES IN VERSION 2.41.1 +------------------------- +o Fix compilation error with stricter compiler checks + CHANGES IN VERSION 2.39.2 ------------------------- o Improve openMSfile and openIDfile manual page (contirbuted by diff --git a/src/pwiz/data/msdata/MSData.cpp b/src/pwiz/data/msdata/MSData.cpp index 963bcb655..88c9589f5 100644 --- a/src/pwiz/data/msdata/MSData.cpp +++ b/src/pwiz/data/msdata/MSData.cpp @@ -1112,6 +1112,8 @@ PWIZ_API_DECL size_t SpectrumList::findAbbreviated(const string& abbreviatedId, if ((result >= 0 && result < size()) || s == 0) return result; } + + return size(); }