Skip to content

Commit

Permalink
Remove format from latitude and longitude schemas
Browse files Browse the repository at this point in the history
  • Loading branch information
bryantgray committed Nov 4, 2024
1 parent d9e4ae3 commit f0ef4f6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

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-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',
Expand Down
6 changes: 2 additions & 4 deletions tap_square/schemas/locations.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,13 @@
"type": [
"null",
"string"
],
"format": "singer.decimal"
]
},
"longitude": {
"type": [
"null",
"string"
],
"format": "singer.decimal"
]
}
}
},
Expand Down

0 comments on commit f0ef4f6

Please sign in to comment.