diff --git a/CHANGELOG.md b/CHANGELOG.md index 66698dd..6d66c84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ 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.4](https://github.com/quintoandar/hive-metastore-client/releases/tag/1.0.4) +### Added +* Added create_external_table method ([#42](https://github.com/quintoandar/hive-metastore-client/pull/42)) +* Added get_partition_keys_objects and get_partition_keys_names methods ([#43](https://github.com/quintoandar/hive-metastore-client/pull/43)) +### Fixed +* Enforcing type as EXTERNAL when creating external tables ([#41](https://github.com/quintoandar/hive-metastore-client/issues/41)) + ## [1.0.3](https://github.com/quintoandar/hive-metastore-client/releases/tag/1.0.3) ### Changed * Handled exception when adding duplicate partitions ([#37](https://github.com/quintoandar/hive-metastore-client/pull/37)) diff --git a/setup.py b/setup.py index 1302f93..397aaae 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.3" +__version__ = "1.0.4" __repository_url__ = "https://github.com/quintoandar/hive-metastore-client" with open("requirements.txt") as f: