Skip to content

Commit

Permalink
fixed MMTF.version not included in distribution files, preparing 0.2.…
Browse files Browse the repository at this point in the history
…1 release
  • Loading branch information
arose committed Apr 25, 2016
1 parent 4e32600 commit 71783e5
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
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/).


## [v0.2.1] - 2016-04-25
### Changed
- fixed MMTF.version not included in distribution files


## [v0.2.0] - 2016-04-25
### Added
- MMTF namespace
Expand All @@ -25,4 +30,5 @@ All notable changes to this project will be documented in this file, following t
- Initial release


[v0.2.1]: https://github.com/rcsb/mmtf-javascript/compare/v0.2.0...v0.2.1
[v0.2.0]: https://github.com/rcsb/mmtf-javascript/compare/v0.1.0...v0.2.0
2 changes: 2 additions & 0 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,6 @@ Change the version number in:
- CHANGELOG.md
- src/mmtf.js

Make sure the distribution files are up-to-date.

Push to github. Make a release on github, tag the commit and copy the relevant info from the changelog file.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@

[![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.0-blue.svg?style=flat)](https://github.com/rcsb/mmtf-javascript/tree/master)
[![Version](http://img.shields.io/badge/version-0.2.1-blue.svg?style=flat)](https://github.com/rcsb/mmtf-javascript/releases/tag/v0.2.1)
[![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). The minified library is available for [download](dist/mmtf.js).


## Table of contents

* [Decoding](#decoding)
Expand Down
2 changes: 1 addition & 1 deletion dist/mmtf.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.0",
"version": "0.2.1",
"description": "JavaScript library for working with MMTF files",
"main": "dist/mmtf-decode.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions src/mmtf.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import decodeMsgpack from "./msgpack-decode.js";
import decodeMmtf from "./mmtf-decode.js";
import traverseMmtf from "./mmtf-traverse.js";

var version = "v0.2.0";
var version = "v0.2.1";

/**
* Decode MMTF fields
Expand Down Expand Up @@ -37,5 +37,5 @@ function decode( binOrDict, params ){
var traverse = traverseMmtf;

export {
decode, traverse
decode, traverse, version
};

0 comments on commit 71783e5

Please sign in to comment.