Skip to content

Commit

Permalink
preparing v0.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
arose committed Jun 9, 2016
1 parent 30874f0 commit d7e3296
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 8 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
All notable changes to this project will be documented in this file, following the suggestions of [Keep a CHANGELOG](http://keepachangelog.com/). This project adheres to [Semantic Versioning](http://semver.org/).


## [Unreleased]
## [v0.3.0] - 2016-06-08
### Added
- support for mmtf version 0.2 (new decoding functions)
- encoding support (MMTF.encode)
Expand All @@ -16,7 +16,7 @@ All notable changes to this project will be documented in this file, following t

### Removed
- support for mmtf version 0.1
- api docs from repsitory (now written to build/docs/api/)
- api docs from repository (now written to build/docs/api/)


## [v0.2.3] - 2016-05-19
Expand Down Expand Up @@ -68,7 +68,7 @@ All notable changes to this project will be documented in this file, following t
- Initial release


[Unreleased]: https://github.com/rcsb/mmtf-javascript/compare/v0.2.3...HEAD
[v0.3.0]: https://github.com/rcsb/mmtf-javascript/compare/v0.2.3...v0.3.0
[v0.2.3]: https://github.com/rcsb/mmtf-javascript/compare/v0.2.2...v0.2.3
[v0.2.2]: https://github.com/rcsb/mmtf-javascript/compare/v0.2.1...v0.2.2
[v0.2.1]: https://github.com/rcsb/mmtf-javascript/compare/v0.2.0...v0.2.1
Expand Down
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,27 @@

[![Build Status](https://travis-ci.org/rcsb/mmtf-javascript.svg?branch=master)](https://travis-ci.org/rcsb/mmtf-javascript)
[![License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](https://github.com/rcsb/mmtf-javascript/blob/master/LICENSE)
[![Version](http://img.shields.io/badge/version-0.2.3-blue.svg?style=flat)](https://github.com/rcsb/mmtf-javascript/releases/tag/v0.2.3)
[![Version](http://img.shields.io/badge/version-0.3.0-blue.svg?style=flat)](https://github.com/rcsb/mmtf-javascript/releases/tag/v0.3.0)
[![Changelog](https://img.shields.io/badge/changelog--lightgrey.svg?style=flat)](https://github.com/rcsb/mmtf-javascript/blob/master/CHANGELOG.md)


JavaScript decoder for MMTF files. For a description of the format see the [MMTF specification](https://github.com/rcsb/mmtf/blob/master/spec.md). See the full changelog is [here](https://github.com/rcsb/mmtf-javascript/blob/master/CHANGELOG.md).
JavaScript encoder and decoder for MMTF files. For a description of the format see the [MMTF specification](https://github.com/rcsb/mmtf/blob/master/spec.md). See the full changelog is [here](https://github.com/rcsb/mmtf-javascript/blob/master/CHANGELOG.md).


## Version 0.3.0

Supporting MMTF v0.2

* [See changelog](https://github.com/rcsb/mmtf-javascript/releases/tag/v0.3.0)
* [Download release](https://github.com/rcsb/mmtf-javascript/archive/v0.3.0.zip)
* [Minified MMTF module](https://github.com/rcsb/mmtf-javascript/blob/v0.3.0/dist/mmtf.js)
* [API documentation](https://rcsb.github.io/mmtf-javascript/docs/api/v0.3.0/index.html)


## Version 0.2.3

Supporting MMTF v0.1

* [See changelog](https://github.com/rcsb/mmtf-javascript/releases/tag/v0.2.3)
* [Download release](https://github.com/rcsb/mmtf-javascript/archive/v0.2.3.zip)
* [Minified MMTF module](https://github.com/rcsb/mmtf-javascript/blob/v0.2.3/dist/mmtf.js)
Expand Down
2 changes: 1 addition & 1 deletion dist/mmtf.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mmtf-javascript",
"version": "0.2.3",
"version": "0.3.0",
"description": "JavaScript library for working with MMTF files",
"main": "dist/mmtf-decode.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/mmtf.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import traverseMmtf from "./mmtf-traverse.js";
* @static
* @type {String}
*/
var version = "v0.2.3";
var version = "v0.3.0";

/**
* Version name
Expand Down

0 comments on commit d7e3296

Please sign in to comment.