Skip to content

Commit cf36c67

Browse files
authored
Merge pull request #24 from rcsb/v1.0
Version 1.0.0 of mmtf-java library
2 parents cef63d2 + ce24e9e commit cf36c67

File tree

7 files changed

+14
-11
lines changed

7 files changed

+14
-11
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ All notable changes to this project will be documented in this file, following t
5252
- getBioassemblyName added to the API - return the BioassemblyName as a string.
5353
- Tests for EncoderUtils
5454

55-
## v0.2.3 - WIP
55+
## v1.0.0 - 2016-08-15
56+
### Changed
57+
- Updated to the URL to the v1.0 version
58+
5659
### Added
5760
- API function to get a byte array from the URL

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![Build Status](https://travis-ci.org/rcsb/mmtf-java.svg?branch=master)](https://travis-ci.org/rcsb/mmtf-java)
22
[![Coverage Status](https://coveralls.io/repos/github/rcsb/mmtf-java/badge.svg?branch=master)](https://coveralls.io/github/rcsb/mmtf-java?branch=master)
33
[![Dependency Status](https://www.versioneye.com/user/projects/56feb8e5fcd19a0039f1553c/badge.svg?style=flat)](https://www.versioneye.com/user/projects/56feb8e5fcd19a0039f1553c)
4-
[![Version](http://img.shields.io/badge/version-0.2.2-blue.svg?style=flat)](https://github.com/rcsb/mmtf-java/) [![License](http://img.shields.io/badge/license-Apache 2.0-blue.svg?style=flat)](https://github.com/rcsb/mmtf-java/blob/master/LICENSE.txt)
4+
[![Version](http://img.shields.io/badge/version-1.0.0-blue.svg?style=flat)](https://github.com/rcsb/mmtf-java/) [![License](http://img.shields.io/badge/license-Apache 2.0-blue.svg?style=flat)](https://github.com/rcsb/mmtf-java/blob/master/LICENSE.txt)
55
[![Changelog](https://img.shields.io/badge/changelog--lightgrey.svg?style=flat)](https://github.com/rcsb/mmtf-java/blob/master/CHANGELOG.md)
66

77

@@ -16,12 +16,12 @@ The alpha release is available on Maven central.
1616
<dependency>
1717
<groupId>org.rcsb</groupId>
1818
<artifactId>mmtf-codec</artifactId>
19-
<version>0.2.2</version>
19+
<version>1.0.0</version>
2020
</dependency>
2121
<dependency>
2222
<groupId>org.rcsb</groupId>
2323
<artifactId>mmtf-api</artifactId>
24-
<version>0.2.2</version>
24+
<version>1.0.0</version>
2525
</dependency>
2626
```
2727

mmtf-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.rcsb</groupId>
55
<artifactId>mmtf</artifactId>
6-
<version>0.2.3-SNAPSHOT</version>
6+
<version>1.0.1-SNAPSHOT</version>
77
</parent>
88
<artifactId>mmtf-api</artifactId>
99
<packaging>jar</packaging>

mmtf-codec/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.rcsb</groupId>
55
<artifactId>mmtf</artifactId>
6-
<version>0.2.3-SNAPSHOT</version>
6+
<version>1.0.1-SNAPSHOT</version>
77
</parent>
88
<artifactId>mmtf-codec</artifactId>
99
<packaging>jar</packaging>
@@ -19,12 +19,12 @@
1919
<dependency>
2020
<groupId>org.rcsb</groupId>
2121
<artifactId>mmtf-api</artifactId>
22-
<version>0.2.3-SNAPSHOT</version>
22+
<version>1.0.1-SNAPSHOT</version>
2323
</dependency>
2424
<dependency>
2525
<groupId>org.rcsb</groupId>
2626
<artifactId>mmtf-serialization</artifactId>
27-
<version>0.2.3-SNAPSHOT</version>
27+
<version>1.0.1-SNAPSHOT</version>
2828
</dependency>
2929
<dependency>
3030
<groupId>commons-lang</groupId>

mmtf-serialization/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.rcsb</groupId>
55
<artifactId>mmtf</artifactId>
6-
<version>0.2.3-SNAPSHOT</version>
6+
<version>1.0.1-SNAPSHOT</version>
77
</parent>
88
<artifactId>mmtf-serialization</artifactId>
99
<packaging>jar</packaging>

mmtf-serialization/src/main/java/org/rcsb/mmtf/utils/CodecUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public class CodecUtils {
1212

1313

1414
/** The base url for this version of MMTF. */
15-
public static final String BASE_URL = "http://mmtf.rcsb.org/v0.2/full/";
15+
public static final String BASE_URL = "http://mmtf.rcsb.org/v1.0/full/";
1616

1717

1818
/** The maximum number of chars in a chain entry. */

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<groupId>org.rcsb</groupId>
1414
<artifactId>mmtf</artifactId>
1515
<packaging>pom</packaging>
16-
<version>0.2.3-SNAPSHOT</version>
16+
<version>1.0.1-SNAPSHOT</version>
1717
<name>mmtf</name>
1818
<description>MMTF is a compressed, fast and useful format for serving macromolecular data.
1919
</description>

0 commit comments

Comments
 (0)