Skip to content
This repository has been archived by the owner on Sep 23, 2024. It is now read-only.

Commit

Permalink
Release 2.0.0 (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
Samira-El authored Jun 13, 2022
1 parent de8872d commit 15034bd
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 5 deletions.
15 changes: 13 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
2.0.0 (2022-06-13)
-------------------
*Breaking changes*

- Drop support for Python 3.6

*Fixes*

- FileNotFoundError when sync runs for more than a day
- State nullified after every record

1.5.0 (2021-08-13)
-------------------
* Add support for optional `aws_endpoint_url` to the configuration
* Bumping dependencies
- Add support for optional `aws_endpoint_url` to the configuration
- Bumping dependencies

1.4.0 (2020-09-09)
-------------------
Expand Down
10 changes: 7 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,20 @@
long_description = f.read()

setup(name="pipelinewise-target-s3-csv",
version="1.5.0",
version="2.0.0",
python_requires=">=3.7.0, <3.11",
description="Singer.io target for writing CSV files and upload to S3 - PipelineWise compatible",
long_description=long_description,
long_description_content_type='text/markdown',
author="TransferWise",
author="Wise",
url='https://github.com/transferwise/pipelinewise-target-s3-csv',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3 :: Only'
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
],
py_modules=["target_s3_csv"],
install_requires=[
Expand Down

0 comments on commit 15034bd

Please sign in to comment.