Skip to content

Commit

Permalink
Fix bool custom schema definition (again) and update version to 0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
leag committed Mar 17, 2024
1 parent 3e76e16 commit 4562e43
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

v0.0.6 (2024-03-16)

- Fix bool custom schema definition (again)

v0.0.5 (2022-06-15)

- Fix bool custom schema definition
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "tap-zendesk-sell"
version = "0.0.5"
version = "0.0.6"
description = "`tap-zendesk-sell` is a Singer tap for Zendesk Sell, built with the Meltano SDK for Singer Taps."
authors = ["Luis Atala"]
keywords = [
Expand Down
1 change: 1 addition & 0 deletions tap_zendesk_sell/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ class ZendeskSellStream(Stream):
"properties": address_properties,
},
"bool": {"type": ["boolean", "null"]},
"boolean": {"type": ["boolean", "null"]},
"date": {"type": ["string", "null"]},
"datetime": {"type": ["string", "null"], "format": "date-time"},
"email": {"type": ["string", "null"]},
Expand Down

0 comments on commit 4562e43

Please sign in to comment.