Skip to content

Commit

Permalink
Merge pull request #14 from anelendata/v0.3
Browse files Browse the repository at this point in the history
v0.3.2
  • Loading branch information
daigotanaka authored Sep 13, 2020
2 parents 3ae8c80 + 09f1567 commit bf39aa3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## History

### 0.3.2

- Fix the bug of requiring start_datetime even when state arg is present

### 0.3.1

- Fix the issue of schema row not wrapped with object
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
from setuptools import setup

VERSION = "0.3.1"
VERSION = "0.3.2"

with open("README.md", "r") as fh:
long_description = fh.read()
Expand Down
4 changes: 2 additions & 2 deletions tap_bigquery/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,8 @@ def main():

singer_utils.check_config(CONFIG, REQUIRED_CONFIG_KEYS)

if not CONFIG.get("start_datetime"):
LOGGER.critical("start_datetime not specified")
if not CONFIG.get("start_datetime") and not CONFIG.get("state"):
LOGGER.error("state or start_datetime must be specified")
return

# If discover flag was passed, run discovery mode and dump output to stdout
Expand Down

0 comments on commit bf39aa3

Please sign in to comment.