Skip to content

Commit 69894a2

Browse files
committed
Bumping version to 1.2.0
1 parent 3869b87 commit 69894a2

File tree

5 files changed

+35
-35
lines changed

5 files changed

+35
-35
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Due the new major version `1.0.0` with breaking changes, please make sure that a
1111

1212
![AWS Data Wrangler](docs/source/_static/logo2.png?raw=true "AWS Data Wrangler")
1313

14-
[![Release](https://img.shields.io/badge/release-1.1.2-brightgreen.svg)](https://pypi.org/project/awswrangler/)
14+
[![Release](https://img.shields.io/badge/release-1.2.0-brightgreen.svg)](https://pypi.org/project/awswrangler/)
1515
[![Python Version](https://img.shields.io/badge/python-3.6%20%7C%203.7%20%7C%203.8-brightgreen.svg)](https://anaconda.org/conda-forge/awswrangler)
1616
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
1717
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

awswrangler/__metadata__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77

88
__title__ = "awswrangler"
99
__description__ = "Pandas on AWS."
10-
__version__ = "1.1.2"
10+
__version__ = "1.2.0"
1111
__license__ = "Apache License 2.0"

awswrangler/_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def ensure_session(session: Optional[boto3.Session] = None) -> boto3.Session:
2525
# set via boto3.setup_default_session()
2626
if boto3.DEFAULT_SESSION is not None:
2727
return boto3.DEFAULT_SESSION
28-
return boto3.Session()
28+
return boto3.Session() # pragma: no cover
2929

3030

3131
def client(service_name: str, session: Optional[boto3.Session] = None) -> boto3.client:

docs/source/api.rst

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -11,27 +11,27 @@ Amazon S3
1111
.. autosummary::
1212
:toctree: stubs
1313

14+
copy_objects
1415
delete_objects
1516
describe_objects
1617
does_object_exist
1718
get_bucket_region
18-
list_objects
1919
list_directories
20+
list_objects
21+
merge_datasets
2022
read_csv
2123
read_fwf
2224
read_json
2325
read_parquet
24-
read_parquet_table
2526
read_parquet_metadata
27+
read_parquet_table
2628
size_objects
2729
store_parquet_metadata
2830
to_csv
2931
to_json
3032
to_parquet
3133
wait_objects_exist
3234
wait_objects_not_exist
33-
copy_objects
34-
merge_datasets
3535

3636
AWS Glue Catalog
3737
----------------
@@ -41,33 +41,33 @@ AWS Glue Catalog
4141
.. autosummary::
4242
:toctree: stubs
4343

44-
add_parquet_partitions
45-
create_parquet_table
4644
add_csv_partitions
45+
add_parquet_partitions
4746
create_csv_table
47+
create_parquet_table
4848
databases
4949
delete_table_if_exists
5050
does_table_exist
51+
drop_duplicated_columns
52+
extract_athena_types
53+
get_columns_comments
54+
get_csv_partitions
5155
get_databases
56+
get_engine
5257
get_parquet_partitions
53-
get_csv_partitions
58+
get_table_description
5459
get_table_location
60+
get_table_parameters
5561
get_table_types
5662
get_tables
57-
search_tables
58-
table
59-
tables
63+
overwrite_table_parameters
6064
sanitize_column_name
6165
sanitize_dataframe_columns_names
6266
sanitize_table_name
63-
drop_duplicated_columns
64-
get_engine
65-
extract_athena_types
66-
get_table_parameters
67-
get_columns_comments
68-
get_table_description
67+
search_tables
68+
table
69+
tables
6970
upsert_table_parameters
70-
overwrite_table_parameters
7171

7272
Amazon Athena
7373
-------------
@@ -77,15 +77,15 @@ Amazon Athena
7777
.. autosummary::
7878
:toctree: stubs
7979

80+
create_athena_bucket
81+
get_query_columns_types
82+
get_work_group
8083
read_sql_query
8184
read_sql_table
8285
repair_table
8386
start_query_execution
8487
stop_query_execution
8588
wait_query
86-
create_athena_bucket
87-
get_query_columns_types
88-
get_work_group
8989

9090
Databases (Redshift, PostgreSQL, MySQL)
9191
---------------------------------------
@@ -95,13 +95,13 @@ Databases (Redshift, PostgreSQL, MySQL)
9595
.. autosummary::
9696
:toctree: stubs
9797

98-
to_sql
99-
read_sql_query
100-
read_sql_table
98+
copy_files_to_redshift
99+
copy_to_redshift
101100
get_engine
102101
get_redshift_temp_engine
103-
copy_to_redshift
104-
copy_files_to_redshift
102+
read_sql_query
103+
read_sql_table
104+
to_sql
105105
unload_redshift
106106
unload_redshift_to_files
107107
write_redshift_copy_manifest
@@ -114,16 +114,16 @@ EMR
114114
.. autosummary::
115115
:toctree: stubs
116116

117+
build_spark_step
118+
build_step
117119
create_cluster
118120
get_cluster_state
119-
terminate_cluster
120-
submit_step
121-
submit_spark_step
121+
get_step_state
122122
submit_ecr_credentials_refresh
123+
submit_spark_step
124+
submit_step
123125
submit_steps
124-
build_step
125-
build_spark_step
126-
get_step_state
126+
terminate_cluster
127127

128128
CloudWatch Logs
129129
---------------

testing/test_awswrangler/test_metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
def test_metadata():
5-
assert wr.__version__ == "1.1.2"
5+
assert wr.__version__ == "1.2.0"
66
assert wr.__title__ == "awswrangler"
77
assert wr.__description__ == "Pandas on AWS."
88
assert wr.__license__ == "Apache License 2.0"

0 commit comments

Comments
 (0)