Skip to content

Commit f4edcc1

Browse files
committed
update version
1 parent 1b8577c commit f4edcc1

7 files changed

Lines changed: 8 additions & 6 deletions

File tree

.zenodo.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"description": "Python client for HAPI",
33
"license": "other-open",
44
"title": "hapi-server/client-python:",
5-
"version": "0.3.1",
5+
"version": "0.3.2b0",
66
"upload_type": "software",
77
"publication_date": "2021-10-06",
88
"creators": [

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,3 +131,4 @@ v0.3.0:
131131
2026-07-08 -- 94-cache-files-can-be-corrupted-by-interrupted-writes
132132
v0.3.1:
133133
2026-07-08 -- 80-subset-error-message-wrong-when-duplicate-parameters
134+
v0.3.2b0:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ PYTHONVERS=python3.14 python3.13 python3.12 python3.11 python3.10 python3.9 pyth
4242

4343
# VERSION is updated in "make version-update" step and derived
4444
# from CHANGES.txt. Do not edit.
45-
VERSION=0.3.1
45+
VERSION=0.3.2b0
4646
SHELL:= /bin/bash
4747

4848
LONG_TESTS=false

hapiclient/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# Allow "from hapiclient import HAPIError"
1414
from hapiclient.util import HAPIError
1515

16-
__version__ = '0.3.1'
16+
__version__ = '0.3.2b0'
1717

1818
import sys
1919
import platform

hapiclient/hapi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def hapiopts():
4545
def hapi(*args, **kwargs):
4646
"""Request data from a HAPI server.
4747
48-
Version: 0.3.1
48+
Version: 0.3.2b0
4949
5050
5151
Examples

misc/version.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
Reads CHANGES.txt and finds last version. Updates version strings in Makefile,
3-
setup.py, hapi.py, and hapiclient.py to match this version.
3+
setup.py, pyproject.toml, hapi.py, and hapiclient.py to match this version.
44
55
TODO: Find better way to manage this.
66
TODO: Update copyright year in LICENSE.txt
@@ -26,6 +26,7 @@
2626
fnames = {
2727
"Makefile": r"^(VERSION=)(.*)$",
2828
"setup.py": r"^(\s*version=')(.*)(',\s*)$",
29+
"pyproject.toml": r'^(version = ")(.*)("$)',
2930
"hapiclient/hapi.py": r"^(\s*Version: )(.*)$",
3031
"hapiclient/__init__.py": r"^(__version__ = ')(.*)('$)",
3132
".zenodo.json": r'^(\s*"version": ")(.*)(",?\s*)$'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
# version is modified by misc/version.py (executed from Makefile). Do not edit.
3333
setup(
3434
name='hapiclient',
35-
version='0.3.1',
35+
version='0.3.2b0',
3636
author='Bob Weigel',
3737
author_email='rweigel@gmu.edu',
3838
packages=find_packages(),

0 commit comments

Comments
 (0)