Skip to content

Commit

Permalink
Bump to 18.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
fcyu committed May 27, 2022
1 parent 2a31867 commit 7e42070
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 9 deletions.
2 changes: 1 addition & 1 deletion MSFragger-GUI/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ plugins {
}

group = 'com.github.chhh'
version = '18.0-build15'
version = '18.0'

description = """FragPipe - run complete proteomics analyses from the GUI"""

Expand Down
4 changes: 2 additions & 2 deletions MSFragger-GUI/src/com/dmtavt/fragpipe/Bundle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
#

# current dev version
msfragger.gui.version=18.0-build15
msfragger.gui.version=18.0

# current last published release
fragpipe.last.release.version=17.1
fragpipe.last.release.version=18.0

msfragger.gui.important-updates=4.1,4.4,5.0,5.1,5.3,7.2,8.1,8.4,8.5,8.6,8.8,9.4,12.2
msfragger.gui.critical-updates=4.0,4.6,4.7,5.2,6.0,7.1,8.3,8.7,9.0,9.1,9.3,10.1,12.0,13.0
Expand Down
25 changes: 21 additions & 4 deletions MSFragger-GUI/src/com/dmtavt/fragpipe/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@
import static com.dmtavt.fragpipe.params.ThisAppProps.PATH_BUNDLE;

import com.dmtavt.fragpipe.api.Bus;
import com.dmtavt.fragpipe.messages.MessageFragpipeUpdate;
import com.dmtavt.fragpipe.params.ThisAppProps;
import com.github.chhh.utils.PropertiesUtils;
import com.github.chhh.utils.StringUtils;
import com.github.chhh.utils.VersionComparator;
import java.io.IOException;
import java.io.InputStream;
import java.nio.file.Files;
Expand All @@ -37,10 +41,6 @@
import java.util.TreeSet;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.dmtavt.fragpipe.messages.MessageFragpipeUpdate;
import com.dmtavt.fragpipe.params.ThisAppProps;
import com.github.chhh.utils.PropertiesUtils;
import com.github.chhh.utils.VersionComparator;

/**
* @author Dmitry Avtonomov
Expand All @@ -63,6 +63,23 @@ public class Version {
new VersionComparator());

static {
CHANGELOG.put("18.0", Arrays.asList(
"Require Java 9+",
"Require MSFragger 3.5+",
"Require Philosopher 4.2.2+",
"Require IonQuant 1.7.30+",
"Add new FragPipe-PDV visualization module",
"Add the IonQuant configuration panel",
"Add more workflows",
"Upgrade DIA-NN to 1.8.1",
"Upgrade PTM-Shepherd to 2.0.0",
"Upgrade TMT-Integrator to 3.3.3",
"Upgrade DIA-Umpire to 2.2.8",
"Upgrade MSBooster to 1.1.4",
"Upgrade Crystal-C to 1.4.4",
"Various minor bug fixes and improvements"
));

CHANGELOG.put("17.1", Arrays.asList(
"Require MSFragger 3.4+",
"Require Philosopher 4.1.0+",
Expand Down
4 changes: 2 additions & 2 deletions MSFragger-GUI/src/umich/msfragger/gui/Bundle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
#

# current dev version
msfragger.gui.version=18.0-build15
msfragger.gui.version=18.0

# current last published release
fragpipe.last.release.version=17.1
fragpipe.last.release.version=18.0

msfragger.gui.important-updates=4.1,4.4,5.0,5.1,5.3,7.2,8.1,8.4,8.5,8.6,8.8,9.4,12.2
msfragger.gui.critical-updates=4.0,4.6,4.7,5.2,6.0,7.1,8.3,8.7,9.0,9.1,9.3,10.1,12.0,13.0
Expand Down

0 comments on commit 7e42070

Please sign in to comment.