Skip to content

Commit 89eff1f

Browse files
authored
Merge pull request #13 from rcsb/v1.0
Version 1.0.0 of mmtf-python library
2 parents 4216bec + b93cd9b commit 89eff1f

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,7 @@ All notable changes to this project will be documented in this file, following t
1212
## v0.2.2 - 2016-08-10
1313
### Changed
1414
- convert_ints_to_floats for old versions of numpy
15+
16+
## v1.0.0 - 2016-08-15
17+
### Changed
18+
- updated URL to new v1.0 data stores

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![Build Status](https://travis-ci.org/rcsb/mmtf-python.svg?branch=master)](https://travis-ci.org/rcsb/mmtf-python)
22
[![Code Health](https://landscape.io/github/rcsb/mmtf-python/master/landscape.svg?style=flat)](https://landscape.io/github/rcsb/mmtf-python/master)
3-
[![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)
3+
[![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)
44

55

66
The **m**acro**m**olecular **t**ransmission **f**ormat (MMTF) is a binary encoding of biological structures.

mmtf/utils/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
NULL_BYTE = '\x00'
66
CHAIN_LEN = 4
77
NUM_DICT = {1:'b',2:'>h',4:'>i'}
8-
BASE_URL = "http://mmtf.rcsb.org/v0.2/full/"
8+
BASE_URL = "http://mmtf.rcsb.org/v1.0/full/"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# Versions should comply with PEP440. For a discussion on single-sourcing
2020
# the version across setup.py and the project code, see
2121
# https://packaging.python.org/en/latest/single_source_version.html
22-
version='0.2.2',
22+
version='1.0.0',
2323

2424
description='A decoding libary for the PDB mmtf format',
2525
long_description=long_description,
@@ -40,7 +40,7 @@
4040
# 3 - Alpha
4141
# 4 - Beta
4242
# 5 - Production/Stable
43-
'Development Status :: 4 - Beta',
43+
'Development Status :: 5 - Production/Stable',
4444

4545
# Indicate who your project is intended for
4646
'Intended Audience :: Developers',

0 commit comments

Comments
 (0)