Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.0.1 #34

Merged
merged 2 commits into from
Dec 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@ 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.1](https://github.com/quintoandar/hive-metastore-client/releases/tag/1.0.1)
### Added
* Added drop_columns_from_table method ([#30](https://github.com/quintoandar/hive-metastore-client/pull/30))
### Changed
* Updated imports in project ([#27](https://github.com/quintoandar/hive-metastore-client/pull/27))
* Shifted to quintoandar's docker image ([#28](https://github.com/quintoandar/hive-metastore-client/pull/28))
### Fixed
* Fixed typo in the client's filename ([#33](https://github.com/quintoandar/hive-metastore-client/pull/33))

## [1.0.0](https://github.com/quintoandar/hive-metastore-client/releases/tag/1.0.0)
First modules and entities of Hive Metastore Client package.

Expand Down
4 changes: 2 additions & 2 deletions 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.0"
__version__ = "1.0.1"
__repository_url__ = "https://github.com/quintoandar/hive-metastore-client"

with open("requirements.txt") as f:
Expand All @@ -12,7 +12,7 @@

setup(
name=__package_name__,
description="A client for connecting and running DMLs on Hive Metastore with Thrift protocol",
description="A client for connecting and running DDLs on Hive Metastore with Thrift protocol",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="hive hive-metastore hive-client hive-metastore-client metastore",
Expand Down