Skip to content

Commit c40f02a

Browse files
committed
Last 0.3.3 commit
1 parent d1c97d8 commit c40f02a

6 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.3b0",
5+
"version": "0.3.3",
66
"upload_type": "software",
77
"publication_date": "2021-10-06",
88
"creators": [

CHANGES.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,4 +135,6 @@ v0.3.2:
135135
2026-07-08 -- Date parsing warning https://github.com/hapi-server/client-python/pull/104
136136
v0.3.3b0:
137137
2026-07-22 -- Makefile and related updates
138-
2026-08-10 -- Don't warn if binary not available
138+
2026-08-10 -- Don't warn if binary not available
139+
v0.3.3:
140+
2026-08-11 -- Cache catalog and capabilities https://github.com/hapi-server/client-python/pull/108

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ PYTHON_VER=$(subst python,,$(PYTHON))
3030

3131
# VERSION is updated in "make version-update" step and derived
3232
# from CHANGES.txt. Do not edit.
33-
VERSION=0.3.3b0
33+
VERSION=0.3.3
3434
SHELL:= /bin/bash
3535

3636
################################################################################

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.3b0'
16+
__version__ = '0.3.3'
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.3b0
48+
Version: 0.3.3
4949
5050
5151
Examples

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "hapiclient"
7-
version = "0.3.3b0"
7+
version = "0.3.3"
88
authors = [
99
{ name = "Bob Weigel", email = "rweigel@gmu.edu" }
1010
]

0 commit comments

Comments
 (0)