Skip to content

Commit

Permalink
Alpha12 (#158)
Browse files Browse the repository at this point in the history
* Minor formatting

* Bump version

* Update HISTORY.md
  • Loading branch information
sserrata committed Apr 15, 2020
1 parent ac51872 commit eb835ce
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# History

## 2.0.0-alpha12 (2020-04-15)

- Allow non-200 HTTP status responses in `iter_job_results()`.

## 2.0.0-alpha11 (2020-04-13)

- Refrain from passing credentials kwarg to get_job_results() in iter_job_results(), fixes #154
Expand Down
2 changes: 1 addition & 1 deletion pan_cortex_data_lake/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""Main package for cortex."""

__author__ = "Palo Alto Networks"
__version__ = "2.0.0-a11"
__version__ = "2.0.0-a12"

from .exceptions import ( # noqa: F401
CortexError,
Expand Down
1 change: 1 addition & 0 deletions pan_cortex_data_lake/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,7 @@ def iter_job_results(
]:
if value is not None:
params.update({name: value})

while True:
r = self.get_job_results(
job_id=job_id, params=params, enforce_json=enforce_json, **kwargs
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.0.0a11
current_version = 2.0.0a12
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

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

0 comments on commit eb835ce

Please sign in to comment.