Skip to content

Commit 2de5bca

Browse files
committed
Update version 0.2.7b1
1 parent 8695a7d commit 2de5bca

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Test hapi() data read functions using repository code:
22
# make repository-test PYTHON=_PYTHON_ # Test using _PYTHON_ (e.g, python3.6)
3-
# make repository-test-all # Test on all versions in $(PYTHONVERS) var below
3+
# make repository-test-all # Test on all versions in $(PYTHONVERS) var below
44
#
55
# Beta releases:
66
# 1. Run make repository-test-all
@@ -27,7 +27,7 @@
2727
# git commit -a -m "Update version for next release"
2828
# This will update the version information in the repository to indicate it
2929
# is now in a pre-release state.
30-
# 5. Manually create a relase at https://github.com/hapi-server/client-python/releases
30+
# 5. Manually create a release at https://github.com/hapi-server/client-python/releases
3131
# (could do this automatically using https://stackoverflow.com/questions/21214562/how-to-release-versions-on-github-through-the-command-line)
3232
# Notes:
3333
# 1. make repository-test tests with Anaconda virtual environment
@@ -49,7 +49,7 @@ PYTHONVERS=python3.13 python3.12 python3.11 python3.10 python3.9 python3.8 pytho
4949

5050
# VERSION is updated in "make version-update" step and derived
5151
# from CHANGES.txt. Do not edit.
52-
VERSION=0.2.6
52+
VERSION=0.2.7b1
5353
SHELL:= /bin/bash
5454
#SHELL:= /c/Windows/system32/cmd
5555

hapiclient/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# Allow "from hapiclient import HAPIError"
1111
from hapiclient.util import HAPIError
1212

13-
__version__ = '0.2.6'
13+
__version__ = '0.2.7b1'
1414

1515
import sys
1616
if sys.version_info[0] < 3:

hapiclient/hapi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def hapiopts():
176176
def hapi(*args, **kwargs):
177177
"""Request data from a HAPI server.
178178
179-
Version: 0.2.6
179+
Version: 0.2.7b1
180180
181181
182182
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.2.6',
32+
version='0.2.7b1',
3333
author='Bob Weigel',
3434
author_email='rweigel@gmu.edu',
3535
packages=find_packages(),

0 commit comments

Comments
 (0)