diff --git a/CHANGELOG.md b/CHANGELOG.md index b4dc76dd8..eb0a3c2e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,21 @@ -0.40.0 (2022-02-27) +0.41.0 (2022-02-10) +------------------- + +- Dropped support for python 3.6 +- Bump `ujson` from `4.3.0` to `5.1.0` +- Bump `pipelinewise-tap-s3-csv` to `2.0.0` +- Fix for config json files +- Fix: e2e tests fail when SF credentials are not present + +0.40.0 (2022-01-27) ------------------- - Bump `pipelinewise-tap-kafka` from `5.0.1` to `5.1.0` -0.39.1 (2022-02-26) +0.39.1 (2022-01-26) ------------------- - Bump `pipelinewise-tap-kafka` from `5.0.0` to `5.0.1` -0.39.0 (2022-02-25) +0.39.0 (2022-01-25) ------------------- - Bump `pipelinewise-tap-kafka` from `4.0.1` to `5.0.0` - Bump `pipelinewise-target-bigquery` from `1.1.1` to `1.2.0` diff --git a/Makefile b/Makefile index 4da3be490..fc11f4571 100644 --- a/Makefile +++ b/Makefile @@ -8,6 +8,8 @@ RESET_COLOR = \x1b[0m PIPELINEWISE_HOME = $(shell pwd) VENV_DIR = ${PIPELINEWISE_HOME}/.virtualenvs +python ?= "python3" + start_time:=$(shell date +%s) PIP_ARGS="[test]" @@ -113,7 +115,7 @@ endef define make_virtualenv @echo -n "Making Virtual Environment for $(1) in $(VENV_DIR)..." @echo -e -n "$(YELLOW)" - @test -d $(VENV_DIR)/$(1) || python3 -m venv $(VENV_DIR)/$(1) + @test -d $(VENV_DIR)/$(1) || $(python) -m venv $(VENV_DIR)/$(1) @source $(VENV_DIR)/$(1)/bin/activate @echo -e "$(OK_MSG)" @echo -e -n "$(YELLOW)" diff --git a/setup.py b/setup.py index 6fdc205ae..e92d8de0b 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,8 @@ LONG_DESCRIPTION = f.read() setup(name='pipelinewise', - version='0.40.0', + python_requires='>=3.7', + version='0.41.0', description='PipelineWise', long_description=LONG_DESCRIPTION, long_description_content_type='text/markdown', diff --git a/singer-connectors/tap-s3-csv/requirements.txt b/singer-connectors/tap-s3-csv/requirements.txt index d92ece2be..3e27e7d03 100644 --- a/singer-connectors/tap-s3-csv/requirements.txt +++ b/singer-connectors/tap-s3-csv/requirements.txt @@ -1 +1 @@ -pipelinewise-tap-s3-csv==1.2.3 +pipelinewise-tap-s3-csv==2.0.0