Skip to content

Commit 5c8b483

Browse files
author
Lucas Fonseca
authored
[DAE-144] Release 1.0.7 (#58)
* Release 1.0.7 * Adding change to changelog in version 1.0.7
1 parent 8fa76ad commit 5c8b483

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,19 @@ 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.7](https://github.com/quintoandar/hive-metastore-client/releases/tag/1.0.7)
7+
### Added
8+
* Added method `add_partitions_to_table` to add partitions receiving an exception if some partition already exists
9+
([#57](https://github.com/quintoandar/hive-metastore-client/pull/57))
10+
11+
### Fixed
12+
* Removed types-comparison when dropping a column ([#56](https://github.com/quintoandar/hive-metastore-client/pull/56))
13+
* Handled the partitions adding inside a loop (adding each partition individually) to fix a silent bug (if some
14+
partition already existed, none of the list were added) ([#57](https://github.com/quintoandar/hive-metastore-client/pull/57))
15+
616
## [1.0.6](https://github.com/quintoandar/hive-metastore-client/releases/tag/1.0.6)
717
### Added
8-
* Added get_partition_keys method to get partitions with name and type ([#53](https://github.com/quintoandar/hive-metastore-client/pull/53))
18+
* Added `get_partition_keys` method to get partitions with name and type ([#53](https://github.com/quintoandar/hive-metastore-client/pull/53))
919

1020
### Changed
1121
* Handled exception when table has no partitions in method `get_partition_values_from_table` ([#55](https://github.com/quintoandar/hive-metastore-client/pull/55))

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.6"
4+
__version__ = "1.0.7"
55
__repository_url__ = "https://github.com/quintoandar/hive-metastore-client"
66

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

0 commit comments

Comments
 (0)