Skip to content

Commit

Permalink
release v0.41.0 (#892)
Browse files Browse the repository at this point in the history
* release v0.41.0

* Update CHANGELOG.md

* parameterise python in makefile

* Update CHANGELOG.md

Co-authored-by: Amir Mofakhar <[email protected]>

* Update Makefile

Co-authored-by: Amir Mofakhar <[email protected]>
  • Loading branch information
jeet-parekh-wise and amofakhar authored Feb 10, 2022
1 parent 2fc52b2 commit bfe6230
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 6 deletions.
15 changes: 12 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`
Expand Down
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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]"
Expand Down Expand Up @@ -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)"
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion singer-connectors/tap-s3-csv/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pipelinewise-tap-s3-csv==1.2.3
pipelinewise-tap-s3-csv==2.0.0

0 comments on commit bfe6230

Please sign in to comment.