Skip to content

Commit

Permalink
Bump to v1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chhh committed Dec 5, 2017
1 parent 81f066e commit 8d89fd0
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
4 changes: 2 additions & 2 deletions MSFileToolbox/pom.xml
Expand Up @@ -32,7 +32,7 @@

<!--<groupId>com.github.chhh</groupId>-->
<artifactId>msftbx</artifactId>
<version>1.7.0</version>
<version>1.8.0</version>
<packaging>jar</packaging>

<name>MSFTBX</name>
Expand All @@ -44,7 +44,7 @@
<connection>${scm.url}</connection>
<developerConnection>${scm.url}</developerConnection>
<url>${scm.url}</url>
<tag>v1.7.0</tag>
<tag>v1.8.0</tag>
</scm>


Expand Down
8 changes: 7 additions & 1 deletion MSFileToolbox/src/umich/ms/msfiletoolbox/MsftbxInfo.java
Expand Up @@ -22,12 +22,18 @@
* @author Dmitry Avtonomov
*/
public class MsftbxInfo {
public static final String version = "1.7.0";
public static final String version = "1.8.0";

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

static {
String v180 = "v1.8.0";
List<String> v180notes = new LinkedList<>();
v180notes.add("PepXml, ProtXml, MzIdentMl parsers updated to use Doubles instead of Floats everywhere. This " +
"will break old code that used some of the values as floats.");
changelog.put(v180, v180notes);

String v170 = "v1.7.0";
List<String> v170notes = new LinkedList<>();
v170notes.add("Complete overhaul of how run header is parsed for mzML and mzXML. Should now be completely " +
Expand Down
7 changes: 6 additions & 1 deletion README.md
Expand Up @@ -21,10 +21,15 @@ Please cite the following paper if you used [MSFTBX](https://github.com/chhh/msf
<dependency>
<groupId>com.github.chhh</groupId>
<artifactId>msftbx</artifactId>
<version>1.7.0</version>
<version>1.8.0</version>
</dependency>
```

## Release notes
#### v1.8.0
- **Incompatible change to previous versions**. PepXml, ProtXml, MzIdentMl parsers now use Doubles instead of Floats everywhere. Any old code using old Float properties
might break now.

## How to use
To get started quickly, follow the tutorial: http://www.batmass.org/tutorial/data-access-layer/#parsing-lc-ms-data-mzml-mzxml-files

Expand Down

0 comments on commit 8d89fd0

Please sign in to comment.