Skip to content

Commit

Permalink
Merge pull request #13 from rcsb/v1.0
Browse files Browse the repository at this point in the history
Version 1.0.0 of mmtf-python library
  • Loading branch information
abradle authored Aug 15, 2016
2 parents 4216bec + b93cd9b commit 89eff1f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,7 @@ All notable changes to this project will be documented in this file, following t
## v0.2.2 - 2016-08-10
### Changed
- convert_ints_to_floats for old versions of numpy

## v1.0.0 - 2016-08-15
### Changed
- updated URL to new v1.0 data stores
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![Build Status](https://travis-ci.org/rcsb/mmtf-python.svg?branch=master)](https://travis-ci.org/rcsb/mmtf-python)
[![Code Health](https://landscape.io/github/rcsb/mmtf-python/master/landscape.svg?style=flat)](https://landscape.io/github/rcsb/mmtf-python/master)
[![Version](http://img.shields.io/badge/version-0.2.2-blue.svg?style=flat)](https://github.com/rcsb/mmtf-python/) [![License](http://img.shields.io/badge/license-Apache 2.0-blue.svg?style=flat)](https://github.com/rcsb/mmtf-python/blob/master/LICENSE.txt)
[![Version](http://img.shields.io/badge/version-1.0.0-blue.svg?style=flat)](https://github.com/rcsb/mmtf-python/) [![License](http://img.shields.io/badge/license-Apache 2.0-blue.svg?style=flat)](https://github.com/rcsb/mmtf-python/blob/master/LICENSE.txt)


The **m**acro**m**olecular **t**ransmission **f**ormat (MMTF) is a binary encoding of biological structures.
Expand Down
2 changes: 1 addition & 1 deletion mmtf/utils/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
NULL_BYTE = '\x00'
CHAIN_LEN = 4
NUM_DICT = {1:'b',2:'>h',4:'>i'}
BASE_URL = "http://mmtf.rcsb.org/v0.2/full/"
BASE_URL = "http://mmtf.rcsb.org/v1.0/full/"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version='0.2.2',
version='1.0.0',

description='A decoding libary for the PDB mmtf format',
long_description=long_description,
Expand All @@ -40,7 +40,7 @@
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',

# Indicate who your project is intended for
'Intended Audience :: Developers',
Expand Down

0 comments on commit 89eff1f

Please sign in to comment.