diff --git a/CHANGELOG.md b/CHANGELOG.md index e1156ea..c96cd0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 1.0.2 + * Added workaround for int ID deprecation [#13](https://github.com/singer-io/tap-asana/pull/13) + * First, attempts to parse `gid` as `int` and assign it to `id` for no visible effect on the current data + * This may result in IDs being integer *or* string if Asana changes the value of `gid` + ## 1.0.1 * Added custom_fields and tags to tasks schema diff --git a/setup.py b/setup.py index 566f83f..79bcc1a 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name="tap-asana", - version="1.0.1", + version="1.0.2", description="Singer.io tap for extracting Asana data", author="Stitch", url="http://github.com/singer-io/tap-asana",