Skip to content

Commit 7e42070

Browse files
committed
Bump to 18.0.
1 parent 2a31867 commit 7e42070

File tree

4 files changed

+26
-9
lines changed

4 files changed

+26
-9
lines changed

MSFragger-GUI/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ plugins {
2121
}
2222

2323
group = 'com.github.chhh'
24-
version = '18.0-build15'
24+
version = '18.0'
2525

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

MSFragger-GUI/src/com/dmtavt/fragpipe/Bundle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
#
1717

1818
# current dev version
19-
msfragger.gui.version=18.0-build15
19+
msfragger.gui.version=18.0
2020

2121
# current last published release
22-
fragpipe.last.release.version=17.1
22+
fragpipe.last.release.version=18.0
2323

2424
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
2525
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

MSFragger-GUI/src/com/dmtavt/fragpipe/Version.java

+21-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@
1919
import static com.dmtavt.fragpipe.params.ThisAppProps.PATH_BUNDLE;
2020

2121
import com.dmtavt.fragpipe.api.Bus;
22+
import com.dmtavt.fragpipe.messages.MessageFragpipeUpdate;
23+
import com.dmtavt.fragpipe.params.ThisAppProps;
24+
import com.github.chhh.utils.PropertiesUtils;
2225
import com.github.chhh.utils.StringUtils;
26+
import com.github.chhh.utils.VersionComparator;
2327
import java.io.IOException;
2428
import java.io.InputStream;
2529
import java.nio.file.Files;
@@ -37,10 +41,6 @@
3741
import java.util.TreeSet;
3842
import org.slf4j.Logger;
3943
import org.slf4j.LoggerFactory;
40-
import com.dmtavt.fragpipe.messages.MessageFragpipeUpdate;
41-
import com.dmtavt.fragpipe.params.ThisAppProps;
42-
import com.github.chhh.utils.PropertiesUtils;
43-
import com.github.chhh.utils.VersionComparator;
4444

4545
/**
4646
* @author Dmitry Avtonomov
@@ -63,6 +63,23 @@ public class Version {
6363
new VersionComparator());
6464

6565
static {
66+
CHANGELOG.put("18.0", Arrays.asList(
67+
"Require Java 9+",
68+
"Require MSFragger 3.5+",
69+
"Require Philosopher 4.2.2+",
70+
"Require IonQuant 1.7.30+",
71+
"Add new FragPipe-PDV visualization module",
72+
"Add the IonQuant configuration panel",
73+
"Add more workflows",
74+
"Upgrade DIA-NN to 1.8.1",
75+
"Upgrade PTM-Shepherd to 2.0.0",
76+
"Upgrade TMT-Integrator to 3.3.3",
77+
"Upgrade DIA-Umpire to 2.2.8",
78+
"Upgrade MSBooster to 1.1.4",
79+
"Upgrade Crystal-C to 1.4.4",
80+
"Various minor bug fixes and improvements"
81+
));
82+
6683
CHANGELOG.put("17.1", Arrays.asList(
6784
"Require MSFragger 3.4+",
6885
"Require Philosopher 4.1.0+",

MSFragger-GUI/src/umich/msfragger/gui/Bundle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
#
1717

1818
# current dev version
19-
msfragger.gui.version=18.0-build15
19+
msfragger.gui.version=18.0
2020

2121
# current last published release
22-
fragpipe.last.release.version=17.1
22+
fragpipe.last.release.version=18.0
2323

2424
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
2525
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

0 commit comments

Comments
 (0)