Skip to content

Commit

Permalink
[DAE-144] Release 1.0.7 (#58)
Browse files Browse the repository at this point in the history
* Release 1.0.7

* Adding change to changelog in version 1.0.7
  • Loading branch information
Lucas Fonseca authored Mar 12, 2021
1 parent 8fa76ad commit 5c8b483
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,19 @@ All notable changes to this project will be documented in this file.

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

## [1.0.7](https://github.com/quintoandar/hive-metastore-client/releases/tag/1.0.7)
### Added
* Added method `add_partitions_to_table` to add partitions receiving an exception if some partition already exists
([#57](https://github.com/quintoandar/hive-metastore-client/pull/57))

### Fixed
* Removed types-comparison when dropping a column ([#56](https://github.com/quintoandar/hive-metastore-client/pull/56))
* Handled the partitions adding inside a loop (adding each partition individually) to fix a silent bug (if some
partition already existed, none of the list were added) ([#57](https://github.com/quintoandar/hive-metastore-client/pull/57))

## [1.0.6](https://github.com/quintoandar/hive-metastore-client/releases/tag/1.0.6)
### Added
* Added get_partition_keys method to get partitions with name and type ([#53](https://github.com/quintoandar/hive-metastore-client/pull/53))
* Added `get_partition_keys` method to get partitions with name and type ([#53](https://github.com/quintoandar/hive-metastore-client/pull/53))

### Changed
* Handled exception when table has no partitions in method `get_partition_values_from_table` ([#55](https://github.com/quintoandar/hive-metastore-client/pull/55))
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import find_packages, setup

__package_name__ = "hive_metastore_client"
__version__ = "1.0.6"
__version__ = "1.0.7"
__repository_url__ = "https://github.com/quintoandar/hive-metastore-client"

with open("requirements.txt") as f:
Expand Down

0 comments on commit 5c8b483

Please sign in to comment.