From 4db296893a135a2036423deac648ca273e52abab Mon Sep 17 00:00:00 2001 From: Breno Arosa Date: Mon, 23 Aug 2021 14:54:40 -0300 Subject: [PATCH] Release 1.0.9 (#65) --- CHANGELOG.md | 7 ++++++- setup.py | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 414c31d..0fa51ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ 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.9](https://github.com/quintoandar/hive-metastore-client/releases/tag/1.0.9) +### Fixed +* Stop inducing exception on Hive Metastore server when trying to retrieve partition values with `get_partition_values_from_table` for partitionless tables. + ([#64](https://github.com/quintoandar/hive-metastore-client/pull/64)) + ## [1.0.8](https://github.com/quintoandar/hive-metastore-client/releases/tag/1.0.8) ### Changed * Replaced default values for `TableBuilder` and `SerdeInfoBuilder` constructors when no value is provided for specific lists and dicts @@ -71,4 +76,4 @@ First modules and entities of Hive Metastore Client package. * Adding DatabaseBuilder ([#13](https://github.com/quintoandar/hive-metastore-client/pull/13)) * Adding TableBuilder, ColumnBuilder, SerDeInfoBuilder and StorageDescriptorBuilder ([#15](https://github.com/quintoandar/hive-metastore-client/pull/15)) * Adding PartitionBuilder and method `add_partitions_to_table` ([#17](https://github.com/quintoandar/hive-metastore-client/pull/17)) -* Adding method `add_columns_to_table` ([#18](https://github.com/quintoandar/hive-metastore-client/pull/18)) \ No newline at end of file +* Adding method `add_columns_to_table` ([#18](https://github.com/quintoandar/hive-metastore-client/pull/18)) diff --git a/setup.py b/setup.py index 2d45b73..72ba8c1 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import find_packages, setup __package_name__ = "hive_metastore_client" -__version__ = "1.0.8" +__version__ = "1.0.9" __repository_url__ = "https://github.com/quintoandar/hive-metastore-client" with open("requirements.txt") as f: