Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.

Commit eb835ce

Browse files
authored
Alpha12 (#158)
* Minor formatting * Bump version * Update HISTORY.md
1 parent ac51872 commit eb835ce

File tree

5 files changed

+8
-3
lines changed

5 files changed

+8
-3
lines changed

HISTORY.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# History
22

3+
## 2.0.0-alpha12 (2020-04-15)
4+
5+
- Allow non-200 HTTP status responses in `iter_job_results()`.
6+
37
## 2.0.0-alpha11 (2020-04-13)
48

59
- Refrain from passing credentials kwarg to get_job_results() in iter_job_results(), fixes #154

pan_cortex_data_lake/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""Main package for cortex."""
44

55
__author__ = "Palo Alto Networks"
6-
__version__ = "2.0.0-a11"
6+
__version__ = "2.0.0-a12"
77

88
from .exceptions import ( # noqa: F401
99
CortexError,

pan_cortex_data_lake/query.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,7 @@ def iter_job_results(
231231
]:
232232
if value is not None:
233233
params.update({name: value})
234+
234235
while True:
235236
r = self.get_job_results(
236237
job_id=job_id, params=params, enforce_json=enforce_json, **kwargs

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.0.0a11
2+
current_version = 2.0.0a12
33
commit = True
44
tag = True
55

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
setup(
2424
name="pan-cortex-data-lake",
25-
version="2.0.0-a11",
25+
version="2.0.0-a12",
2626
description="Python idiomatic SDK for Cortex™ Data Lake.",
2727
long_description=readme + "\n\n" + history,
2828
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)