Skip to content

Commit

Permalink
added readme and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Vi6hal committed Sep 12, 2023
1 parent 6a1ee0f commit b5571b2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 2.5.1
* Fixed Validation Error for `max_daily_calls` [#84](https://github.com/singer-io/tap-marketo/pull/84)

## 2.5.0
* Add campaignId field to activities streams [#82](https://github.com/singer-io/tap-marketo/pull/82)

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

setup(name='tap-marketo',
version='2.5.0',
version='2.5.1',
description='Singer.io tap for extracting data from the Marketo API',
author='Stitch',
url='http://singer.io',
Expand Down
2 changes: 1 addition & 1 deletion tests/test_client_max_api_limit.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ def test_datewindow_enabled_num_val(self):
# Initialize Client object
client = Client(**{'endpoint': "123-ABC-789",'client_id':'ABC-123','client_secret':'123-QRT',"max_daily_calls":3})

self.assertEqual(client.max_daily_calls, 3)
self.assertEqual(client.max_daily_calls, 3)

0 comments on commit b5571b2

Please sign in to comment.