File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file.
3
3
4
4
Preferably use ** Added** , ** Changed** , ** Removed** and ** Fixed** topics in each release or unreleased log for a better organization.
5
5
6
+ ## [ 1.0.1] ( https://github.com/quintoandar/hive-metastore-client/releases/tag/1.0.1 )
7
+ ### Added
8
+ * Added drop_columns_from_table method ([ #30 ] ( https://github.com/quintoandar/hive-metastore-client/pull/30 ) )
9
+ ### Changed
10
+ * Updated imports in project ([ #27 ] ( https://github.com/quintoandar/hive-metastore-client/pull/27 ) )
11
+ * Shifted to quintoandar's docker image ([ #28 ] ( https://github.com/quintoandar/hive-metastore-client/pull/28 ) )
12
+ ### Fixed
13
+ * Fixed typo in the client's filename ([ #33 ] ( https://github.com/quintoandar/hive-metastore-client/pull/33 ) )
14
+
6
15
## [ 1.0.0] ( https://github.com/quintoandar/hive-metastore-client/releases/tag/1.0.0 )
7
16
First modules and entities of Hive Metastore Client package.
8
17
Original file line number Diff line number Diff line change 1
1
from setuptools import find_packages , setup
2
2
3
3
__package_name__ = "hive_metastore_client"
4
- __version__ = "1.0.0 "
4
+ __version__ = "1.0.1 "
5
5
__repository_url__ = "https://github.com/quintoandar/hive-metastore-client"
6
6
7
7
with open ("requirements.txt" ) as f :
12
12
13
13
setup (
14
14
name = __package_name__ ,
15
- description = "A client for connecting and running DMLs on Hive Metastore with Thrift protocol" ,
15
+ description = "A client for connecting and running DDLs on Hive Metastore with Thrift protocol" ,
16
16
long_description = long_description ,
17
17
long_description_content_type = "text/markdown" ,
18
18
keywords = "hive hive-metastore hive-client hive-metastore-client metastore" ,
You can’t perform that action at this time.
0 commit comments