diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d3e62b..f359e4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 0.2.0 + * Added support for custom field of type "float" [#39](https://github.com/singer-io/tap-pendo/pull/39) + ## 0.1.0 * Added support for custom field of type "int" and of type empty string [#37](https://github.com/singer-io/tap-pendo/pull/37) diff --git a/setup.py b/setup.py index 554d52e..dcf47d4 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name="tap-pendo", - version="0.1.0", + version="0.2.0", description="Singer.io tap for extracting data", author="Stitch", url="https://github.com/singer-io/tap-pendo", diff --git a/tap_pendo/discover.py b/tap_pendo/discover.py index 0b97053..8c45dc7 100644 --- a/tap_pendo/discover.py +++ b/tap_pendo/discover.py @@ -58,6 +58,8 @@ def get_schema_property_type(schema_type): return {"type": ["null", "boolean"]} elif schema_type == 'integer': return {"type": ["null", "integer"]} + elif schema_type == 'float': + return {"type": ["null", "number"]} elif schema_type == '': return {}