Skip to content

Commit f0aaa0d

Browse files
committed
Bumping version to 0.0.11
1 parent 632643a commit f0aaa0d

File tree

3 files changed

+6
-10
lines changed

3 files changed

+6
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
> Utility belt to handle data on AWS.
44
5-
[![Release](https://img.shields.io/badge/release-0.0.10-brightgreen.svg)](https://pypi.org/project/awswrangler/)
5+
[![Release](https://img.shields.io/badge/release-0.0.11-brightgreen.svg)](https://pypi.org/project/awswrangler/)
66
[![Downloads](https://img.shields.io/pypi/dm/awswrangler.svg)](https://pypi.org/project/awswrangler/)
77
[![Python Version](https://img.shields.io/badge/python-3.6%20%7C%203.7-brightgreen.svg)](https://pypi.org/project/awswrangler/)
88
[![Documentation Status](https://readthedocs.org/projects/aws-data-wrangler/badge/?version=latest)](https://aws-data-wrangler.readthedocs.io/en/latest/?badge=latest)
9-
[![Coverage](https://img.shields.io/badge/coverage-87%25-brightgreen.svg)](https://pypi.org/project/awswrangler/)
9+
[![Coverage](https://img.shields.io/badge/coverage-88%25-brightgreen.svg)](https://pypi.org/project/awswrangler/)
1010
[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/awslabs/aws-data-wrangler.svg)](http://isitmaintained.com/project/awslabs/aws-data-wrangler "Average time to resolve an issue")
1111
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
1212

awswrangler/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
__title__ = "awswrangler"
22
__description__ = "Utility belt to handle data on AWS."
3-
__version__ = "0.0.10"
3+
__version__ = "0.0.11"
44
__license__ = "Apache License 2.0"

testing/test_awswrangler/test_redshift.py

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -120,13 +120,9 @@ def test_to_redshift_pandas_cast(session, bucket, redshift_parameters):
120120
"name": ["name1", "name2", "name3"],
121121
"foo": [None, None, None],
122122
"boo": [date(2020, 1, 1), None, None],
123-
"bar": [datetime(2021, 1, 1), None, None]})
124-
schema = {
125-
"id": "BIGINT",
126-
"name": "VARCHAR",
127-
"foo": "REAL",
128-
"boo": "DATE",
129-
"bar": "TIMESTAMP"}
123+
"bar": [datetime(2021, 1, 1), None, None]
124+
})
125+
schema = {"id": "BIGINT", "name": "VARCHAR", "foo": "REAL", "boo": "DATE", "bar": "TIMESTAMP"}
130126
con = Redshift.generate_connection(
131127
database="test",
132128
host=redshift_parameters.get("RedshiftAddress"),

0 commit comments

Comments
 (0)