Skip to content

Commit 1c9b08c

Browse files
author
Lucas Mendes Mota da Fonseca
authored
[DAE-125] Release 1.0.6 (#54)
* Release 1.0.6 * Update changelog
1 parent 42bb927 commit 1c9b08c

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,26 @@ All notable changes to this project will be documented in this file.
33

44
Preferably use **Added**, **Changed**, **Removed** and **Fixed** topics in each release or unreleased log for a better organization.
55

6+
## [1.0.6](https://github.com/quintoandar/hive-metastore-client/releases/tag/1.0.6)
7+
### Added
8+
* Added get_partition_keys method to get partitions with name and type ([#53](https://github.com/quintoandar/hive-metastore-client/pull/53))
9+
10+
### Changed
11+
* Handled exception when table has no partitions in method `get_partition_values_from_table` ([#55](https://github.com/quintoandar/hive-metastore-client/pull/55))
12+
613
## [1.0.5](https://github.com/quintoandar/hive-metastore-client/releases/tag/1.0.5)
714
### Added
815
* Added bulk_drop_partitions method ([#49](https://github.com/quintoandar/hive-metastore-client/pull/49))
916
* Added get_partition_values_from_table method ([#50](https://github.com/quintoandar/hive-metastore-client/pull/50))
17+
1018
### Changed
1119
* Changed max_parts parameter from get_partitions method to int32 ([#45](https://github.com/quintoandar/hive-metastore-client/pull/45))
1220

1321
## [1.0.4](https://github.com/quintoandar/hive-metastore-client/releases/tag/1.0.4)
1422
### Added
1523
* Added create_external_table method ([#42](https://github.com/quintoandar/hive-metastore-client/pull/42))
1624
* Added get_partition_keys_objects and get_partition_keys_names methods ([#43](https://github.com/quintoandar/hive-metastore-client/pull/43))
25+
1726
### Fixed
1827
* Enforced type as EXTERNAL when creating external tables ([#41](https://github.com/quintoandar/hive-metastore-client/issues/41))
1928

@@ -29,9 +38,11 @@ Preferably use **Added**, **Changed**, **Removed** and **Fixed** topics in each
2938
## [1.0.1](https://github.com/quintoandar/hive-metastore-client/releases/tag/1.0.1)
3039
### Added
3140
* Added drop_columns_from_table method ([#30](https://github.com/quintoandar/hive-metastore-client/pull/30))
41+
3242
### Changed
3343
* Updated imports in project ([#27](https://github.com/quintoandar/hive-metastore-client/pull/27))
3444
* Shifted to quintoandar's docker image ([#28](https://github.com/quintoandar/hive-metastore-client/pull/28))
45+
3546
### Fixed
3647
* Fixed typo in the client's filename ([#33](https://github.com/quintoandar/hive-metastore-client/pull/33))
3748

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import find_packages, setup
22

33
__package_name__ = "hive_metastore_client"
4-
__version__ = "1.0.5"
4+
__version__ = "1.0.6"
55
__repository_url__ = "https://github.com/quintoandar/hive-metastore-client"
66

77
with open("requirements.txt") as f:

0 commit comments

Comments
 (0)