Skip to content

Commit a1e285c

Browse files
committed
fixed bug that prevented higher level functions from working due to format_result, added changelog, added tests, added Travis CI build status to README
1 parent 5c0ca25 commit a1e285c

File tree

7 files changed

+884
-708
lines changed

7 files changed

+884
-708
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ python:
88

99
install: "pip install -r requirements.txt"
1010

11-
script: nosetests
11+
script: nosetests

CHANGES.rst

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
Changelog
2+
=========
3+
4+
0.1.4 (2015-11-02)
5+
------------------
6+
7+
Fixes:
8+
9+
- Fixed format_result bug that prevented higher level API functions from working.
10+
11+
Testing:
12+
13+
- Added some basic tests, with Travis CI integration
14+
15+
Documentation:
16+
17+
- Added Travis CI embedded status image to README
18+
19+
20+
0.1.3 (2015-11-02)
21+
------------------
22+
23+
Fixes:
24+
25+
- Fixed bugs in http_get handling of 429 response from xmlstats API server. http_get now waits for the amount of time specified by server 429 response before continuing to make requests.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#xmlstats-py
2+
[![Build Status](https://travis-ci.org/dwelch2101/xmlstats-py.svg?branch=master)](https://travis-ci.org/dwelch2101/xmlstats-py)
23
A python module for interacting with the [xmlstats API](https://erikberg.com/api)
34

45
This module aims to closely mirror the methods provided by the xmlstats API in terms of parameters and output structure.

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
description-file = README.md
33

44
[bdist_wheel]
5-
universal = 1
5+
universal = 1

0 commit comments

Comments
 (0)