Skip to content

Commit

Permalink
version bump for release
Browse files Browse the repository at this point in the history
  • Loading branch information
jpetrucciani committed Sep 17, 2019
1 parent 98cf291 commit e1c831e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
8 changes: 2 additions & 6 deletions hubspot3/email_events.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,14 @@ def __init__(self, *args, **kwargs):
self.log = get_log("hubspot3.email_events")

def _get_path(self, subpath):
return "email/public/v{}/campaigns/{}".format(
EMAIL_EVENTS_API_VERSION, subpath
)
return "email/public/v{}/campaigns/{}".format(EMAIL_EVENTS_API_VERSION, subpath)

def get_all_campaigns_ids(self, **options):
"""
Retrieve all email campaign IDs associated with the portal.
:see: https://developers.hubspot.com/docs/methods/email/get_campaigns_by_id
"""
return self._call(
"by-id".format(EMAIL_EVENTS_API_VERSION), **options
)
return self._call("by-id".format(EMAIL_EVENTS_API_VERSION), **options)

def get_campaign_data(self, campaign_id: int = None, **options):
"""
Expand Down
2 changes: 1 addition & 1 deletion hubspot3/globals.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
globals file for hubspot3
"""
__version__ = "3.2.30"
__version__ = "3.2.31"

BASE_URL = "https://api.hubapi.com"

Expand Down
1 change: 1 addition & 0 deletions hubspot3/workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

WORKFLOWS_API_VERSION = "3"


class WorkflowsClient(BaseClient):
"""
The hubspot3 Workflows client uses the _make_request method to call the
Expand Down

0 comments on commit e1c831e

Please sign in to comment.