Skip to content

Commit 8d89fd0

Browse files
committed
Bump to v1.8.0
1 parent 81f066e commit 8d89fd0

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

MSFileToolbox/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
<!--<groupId>com.github.chhh</groupId>-->
3434
<artifactId>msftbx</artifactId>
35-
<version>1.7.0</version>
35+
<version>1.8.0</version>
3636
<packaging>jar</packaging>
3737

3838
<name>MSFTBX</name>
@@ -44,7 +44,7 @@
4444
<connection>${scm.url}</connection>
4545
<developerConnection>${scm.url}</developerConnection>
4646
<url>${scm.url}</url>
47-
<tag>v1.7.0</tag>
47+
<tag>v1.8.0</tag>
4848
</scm>
4949

5050

MSFileToolbox/src/umich/ms/msfiletoolbox/MsftbxInfo.java

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,18 @@
2222
* @author Dmitry Avtonomov
2323
*/
2424
public class MsftbxInfo {
25-
public static final String version = "1.7.0";
25+
public static final String version = "1.8.0";
2626

2727
private static final TreeMap<String, List<String>> changelog = new TreeMap<>();
2828
private static final Map<String, List<String>> changelogImmutable = Collections.unmodifiableMap(changelog);
2929

3030
static {
31+
String v180 = "v1.8.0";
32+
List<String> v180notes = new LinkedList<>();
33+
v180notes.add("PepXml, ProtXml, MzIdentMl parsers updated to use Doubles instead of Floats everywhere. This " +
34+
"will break old code that used some of the values as floats.");
35+
changelog.put(v180, v180notes);
36+
3137
String v170 = "v1.7.0";
3238
List<String> v170notes = new LinkedList<>();
3339
v170notes.add("Complete overhaul of how run header is parsed for mzML and mzXML. Should now be completely " +

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,15 @@ Please cite the following paper if you used [MSFTBX](https://github.com/chhh/msf
2121
<dependency>
2222
<groupId>com.github.chhh</groupId>
2323
<artifactId>msftbx</artifactId>
24-
<version>1.7.0</version>
24+
<version>1.8.0</version>
2525
</dependency>
2626
```
2727

28+
## Release notes
29+
#### v1.8.0
30+
- **Incompatible change to previous versions**. PepXml, ProtXml, MzIdentMl parsers now use Doubles instead of Floats everywhere. Any old code using old Float properties
31+
might break now.
32+
2833
## How to use
2934
To get started quickly, follow the tutorial: http://www.batmass.org/tutorial/data-access-layer/#parsing-lc-ms-data-mzml-mzxml-files
3035

0 commit comments

Comments
 (0)