Skip to content

Commit 614346d

Browse files
committed
Last 0.2.0 commit
1 parent cf85b59 commit 614346d

File tree

6 files changed

+12
-10
lines changed

6 files changed

+12
-10
lines changed

CHANGES.txt

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,11 @@ v0.1.9b1:
7373
2020-01-20 -- 9f8b82f Use atol instead of rtol in readcompare.py
7474
2020-01-20 -- d3625e3 Fix for wrong error message (#24)
7575
v0.1.9b2:
76-
2020-05-25 -- 23b659c Simplify dtype/length code
76+
2021-05-25 -- 23b659c Simplify dtype/length code
7777
v0.1.9b3:
78-
2020-05-25 -- 8161460 Refactor Makefile
78+
2021-05-25 -- 8161460 Refactor Makefile
7979
v0.1.9b4:
80-
2020-05-26 -- 2cabeb4 README.rst -> README.md
81-
80+
2021-05-26 -- 2cabeb4 README.rst -> README.md
81+
2021-05-26 -- b825a54 Fix README file extension
82+
v0.2.0:
83+
2021-06-16 -- 1e891a9 Tox and Travis

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ PYTHONVERS=python3.8 python3.7 python3.6 python3.5 python2.7
4848

4949
# VERSION is updated in "make version-update" step and derived
5050
# from CHANGES.txt. Do not edit.
51-
VERSION=0.1.9b4
51+
VERSION=0.2.0
5252
SHELL:= /bin/bash
5353

5454
LONG_TESTS=false
@@ -153,7 +153,7 @@ package:
153153

154154
package-test-all:
155155
@ for version in $(PYTHONVERS) ; do \
156-
make repository-test-plots PYTHON=$$version ; \
156+
make repository-test PYTHON=$$version ; \
157157
done
158158

159159
env-$(PYTHON):

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ hapiplot(data, meta)
4747

4848
# Documentation
4949

50-
Basic usage examples for various HAPI servers are given in [hapi_demo.py](https://github.com/hapi-server/client-python/blob/master/hapi_demo.py>) and the [Examples section](https://colab.research.google.com/github/hapi-server/client-python-notebooks/blob/master/hapi_demo.ipynb#examples)
50+
Basic usage examples for various HAPI servers are given in [hapi_demo.py](https://github.com/hapi-server/client-python/blob/master/hapi_demo.py>) and the [Examples section](https://colab.research.google.com/github/hapi-server/client-python-notebooks/blob/master/hapi_demo.ipynb#examples) of a Jupyter Notebook hosted on Google Colab.
5151

5252
See http://hapi-server.org/servers/ for a list of HAPI servers and datasets.
5353

hapiclient/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
# Allow "from hapiclient import HAPIError"
88
from hapiclient.util import HAPIError
99

10-
__version__ = '0.1.9b4'
10+
__version__ = '0.2.0'

hapiclient/hapi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def hapiopts():
144144
def hapi(*args, **kwargs):
145145
"""Request data from a HAPI server.
146146
147-
Version: 0.1.9b4
147+
Version: 0.2.0
148148
149149
150150
Examples

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
# version is modified by misc/version.py (executed from Makefile). Do not edit.
3030
setup(
3131
name='hapiclient',
32-
version='0.1.9b4',
32+
version='0.2.0',
3333
author='Bob Weigel',
3434
author_email='rweigel@gmu.edu',
3535
packages=find_packages(),

0 commit comments

Comments
 (0)