diff --git a/CHANGELOG.md b/CHANGELOG.md index 433e61a..b3d1807 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,10 @@ # Changelog -## [v3.0.0] (2024-10-29) +## [v2.1.1] (2024-11-04) -[Full Changelog](https://github.com/singer-io/tap-square/compare/v2.1.0...v3.0.0) +[Full Changelog](https://github.com/singer-io/tap-square/compare/v2.1.0...v2.1.1) -* Updates `latitude` and `longitude` in the `coordinates` field from the `locations` stream to the `singer.decimal` format, which may result in number values instead of a string [#120](https://github.com/singer-io/tap-square/pull/120) +* Removes the invalid `singer-decimal` format from `latitude` and `longitude` in the `coordinates` field from the `locations` stream [#120](https://github.com/singer-io/tap-square/pull/120) ## [v2.1.0] (2023-06-08) diff --git a/setup.py b/setup.py index a0649e3..53a8136 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup setup(name='tap-square', - version='3.0.0', + version='2.1.1', description='Singer.io tap for extracting data from the Square API', author='Stitch', url='http://singer.io', diff --git a/tap_square/schemas/locations.json b/tap_square/schemas/locations.json index d97acae..2365e17 100644 --- a/tap_square/schemas/locations.json +++ b/tap_square/schemas/locations.json @@ -32,15 +32,13 @@ "type": [ "null", "string" - ], - "format": "singer.decimal" + ] }, "longitude": { "type": [ "null", "string" - ], - "format": "singer.decimal" + ] } } },