Skip to content

Commit

Permalink
Merge pull request #24 from rcsb/v1.0
Browse files Browse the repository at this point in the history
Version 1.0.0 of mmtf-java library
  • Loading branch information
abradle committed Aug 15, 2016
2 parents cef63d2 + ce24e9e commit cf36c67
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 11 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Expand Up @@ -52,6 +52,9 @@ All notable changes to this project will be documented in this file, following t
- getBioassemblyName added to the API - return the BioassemblyName as a string.
- Tests for EncoderUtils

## v0.2.3 - WIP
## v1.0.0 - 2016-08-15
### Changed
- Updated to the URL to the v1.0 version

### Added
- API function to get a byte array from the URL
6 changes: 3 additions & 3 deletions README.md
@@ -1,7 +1,7 @@
[![Build Status](https://travis-ci.org/rcsb/mmtf-java.svg?branch=master)](https://travis-ci.org/rcsb/mmtf-java)
[![Coverage Status](https://coveralls.io/repos/github/rcsb/mmtf-java/badge.svg?branch=master)](https://coveralls.io/github/rcsb/mmtf-java?branch=master)
[![Dependency Status](https://www.versioneye.com/user/projects/56feb8e5fcd19a0039f1553c/badge.svg?style=flat)](https://www.versioneye.com/user/projects/56feb8e5fcd19a0039f1553c)
[![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)
[![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)
[![Changelog](https://img.shields.io/badge/changelog--lightgrey.svg?style=flat)](https://github.com/rcsb/mmtf-java/blob/master/CHANGELOG.md)


Expand All @@ -16,12 +16,12 @@ The alpha release is available on Maven central.
<dependency>
<groupId>org.rcsb</groupId>
<artifactId>mmtf-codec</artifactId>
<version>0.2.2</version>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>org.rcsb</groupId>
<artifactId>mmtf-api</artifactId>
<version>0.2.2</version>
<version>1.0.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion mmtf-api/pom.xml
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.rcsb</groupId>
<artifactId>mmtf</artifactId>
<version>0.2.3-SNAPSHOT</version>
<version>1.0.1-SNAPSHOT</version>
</parent>
<artifactId>mmtf-api</artifactId>
<packaging>jar</packaging>
Expand Down
6 changes: 3 additions & 3 deletions mmtf-codec/pom.xml
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.rcsb</groupId>
<artifactId>mmtf</artifactId>
<version>0.2.3-SNAPSHOT</version>
<version>1.0.1-SNAPSHOT</version>
</parent>
<artifactId>mmtf-codec</artifactId>
<packaging>jar</packaging>
Expand All @@ -19,12 +19,12 @@
<dependency>
<groupId>org.rcsb</groupId>
<artifactId>mmtf-api</artifactId>
<version>0.2.3-SNAPSHOT</version>
<version>1.0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.rcsb</groupId>
<artifactId>mmtf-serialization</artifactId>
<version>0.2.3-SNAPSHOT</version>
<version>1.0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
Expand Down
2 changes: 1 addition & 1 deletion mmtf-serialization/pom.xml
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.rcsb</groupId>
<artifactId>mmtf</artifactId>
<version>0.2.3-SNAPSHOT</version>
<version>1.0.1-SNAPSHOT</version>
</parent>
<artifactId>mmtf-serialization</artifactId>
<packaging>jar</packaging>
Expand Down
Expand Up @@ -12,7 +12,7 @@ public class CodecUtils {


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


/** The maximum number of chars in a chain entry. */
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -13,7 +13,7 @@
<groupId>org.rcsb</groupId>
<artifactId>mmtf</artifactId>
<packaging>pom</packaging>
<version>0.2.3-SNAPSHOT</version>
<version>1.0.1-SNAPSHOT</version>
<name>mmtf</name>
<description>MMTF is a compressed, fast and useful format for serving macromolecular data.
</description>
Expand Down

0 comments on commit cf36c67

Please sign in to comment.